MCPcopy Create free account
hub / github.com/code100x/cms / ButtonProps

Interface ButtonProps

src/components/ui/button.tsx:43–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41);
42
43export interface ButtonProps
44 extends React.ButtonHTMLAttributes<HTMLButtonElement>,
45 VariantProps<typeof buttonVariants> {
46 asChild?: boolean;
47}
48
49const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
50 ({ className, variant, size, asChild = false, ...props }, ref) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected