@mantine/code-highlight
Version:
Code highlight with Mantine theme
12 lines (11 loc) • 414 B
TypeScript
interface ExpandCodeButtonProps {
expanded: boolean;
onExpand: (value: boolean) => void;
collapseCodeLabel?: string;
expandCodeLabel?: string;
}
export declare function ExpandCodeButton({ expanded, onExpand, expandCodeLabel, collapseCodeLabel, }: ExpandCodeButtonProps): import("react/jsx-runtime").JSX.Element;
export declare namespace ExpandCodeButton {
var displayName: string;
}
export {};