MCPcopy Create free account
hub / github.com/WebDevSimplified/course-platform / ButtonProps

Interface ButtonProps

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected