MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / ButtonProps

Interface ButtonProps

frontend/src/components/Common/Button.tsx:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import clsx from 'clsx';
3
4interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
5 variant?: 'primary' | 'secondary' | 'destructive';
6 size?: 'sm' | 'md' | 'lg';
7 children: React.ReactNode;
8}
9
10const Button: React.FC<ButtonProps> = ({
11 variant = 'primary',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected