@cainthus/alex-library
Version:
Component React library for Cainthus - Alex Dashboard.
15 lines (14 loc) • 336 B
TypeScript
import { ReactNode, CSSProperties } from "react";
export declare type Props = {
className?: string;
style?: CSSProperties;
render(args: {
open: () => void;
close: () => void;
toggle: () => void;
isOpened: boolean;
}): ReactNode;
};
export declare type State = {
isOpened: boolean;
};