UNPKG

@rockshin/react-image-annotation

Version:

An image annotation tool for ai project that manual annotation for images, easy to use!

12 lines (11 loc) 369 B
import './button.css'; interface ButtonProps { className?: string; primary?: boolean; backgroundColor?: string; size?: 'small' | 'medium' | 'large'; children: string; onClick?: () => void; } export declare const Button: ({ primary, size, backgroundColor, children, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element; export {};