ladle-inject-custom-addons
Version:
Adds a button to the Ladle addon bar
12 lines (11 loc) • 350 B
TypeScript
import React from "react";
interface IconSvgProps extends React.ComponentProps<"svg"> {
/**
* @default 24
*/
size?: number;
}
export type LadleIconProps = Omit<IconSvgProps, "children">;
export declare const LadleDialogCloseIcon: React.FC<LadleIconProps>;
export declare const ExampleLadleIcon: React.FC<LadleIconProps>;
export {};