MCPcopy Create free account
hub / github.com/Kilo-Org/cloud / LinkButton

Function LinkButton

apps/web/src/components/Button.tsx:75–84  ·  view source on GitHub ↗
({
  variant = 'primary',
  size = 'md',
  className = '',
  ...props
}: LinkButtonProps)

Source from the content-addressed store, hash-verified

73}
74
75export function LinkButton({
76 variant = 'primary',
77 size = 'md',
78 className = '',
79 ...props
80}: LinkButtonProps) {
81 const buttonStyles = cn(baseStyles, variantStyles[variant], sizeStyles[size], className);
82
83 return <Link className={buttonStyles} {...props} />;
84}

Callers 2

postSessionLinkEphemeralFunction · 0.85
linkAccountCardFunction · 0.85

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected