Spaces:
Running
Running
File size: 306 Bytes
b967c2c e860c42 a458144 b967c2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import * as React from "react"
const Button = React.forwardRef(({ className, variant, size, asChild = false, ...props }, ref) => {
return (
<button
className={`btn btn-primary ${className || ''}`}
ref={ref}
{...props}
/>
)
})
Button.displayName = "Button"
export { Button }
|