MCPcopy Create free account
hub / github.com/YourAverageTechBro/DevToolboxWeb / Button

Function Button

src/app/components/common/Button.tsx:29–33  ·  view source on GitHub ↗
({ intent, fullWidth, ...props }: Props)

Source from the content-addressed store, hash-verified

27 extends ButtonOrLinkProps,
28 VariantProps<typeof buttonStyles> {}
29export function Button({ intent, fullWidth, ...props }: Props) {
30 return (
31 <ButtonOrLink className={buttonStyles({ intent, fullWidth })} {...props} />
32 );
33}
34
35type ButtonOrLinkProps = ComponentProps<"button"> & ComponentProps<"a">;
36

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected