MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / ButtonProps

Interface ButtonProps

packages/app-core/src/components/ui/Button.tsx:30–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
31 variant?: ButtonVariant
32 size?: ButtonSize
33}
34
35export const Button = forwardRef<HTMLButtonElement, ButtonProps>(function Button(
36 { variant = 'secondary', size = 'sm', className = '', type = 'button', children, ...rest },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected