UNPKG

matrix-react-sdk

Version:
9 lines (8 loc) 275 B
import { PropsWithChildren, ReactNode } from "react"; interface Props { icon?: ReactNode; action?: ReactNode; onAction?: () => void; } export declare function SettingsBanner({ children, icon, action, onAction }: PropsWithChildren<Props>): JSX.Element; export {};