MCPcopy Create free account
hub / github.com/code100x/daily-code / ButtonProps

Interface ButtonProps

packages/ui/src/shad/ui/button.tsx:34–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32);
33
34export interface ButtonProps
35 extends React.ButtonHTMLAttributes<HTMLButtonElement>,
36 VariantProps<typeof buttonVariants> {
37 asChild?: boolean;
38}
39
40const Button = forwardRef<HTMLButtonElement, ButtonProps>(
41 ({ className, variant, size, asChild = false, ...props }, ref) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected