Button
Clickable action element.
Also known as:
- Action Button
- Action Link
- Chunky Buttons
- Circular Button
- Button Link
- Button Tile
- Button Timed
- Call to Action Link
- Close Button
- Card Button
- Condensed Button
- Copy Button
- Floating Action Button
- Floatbutton
- Form buttons
- Link button
- Primary Button
- Secondary Button
- Tertiary Button
- Ghost Button
- Icon Button
- Text Button
Overview
Purpose
The Button component clickable action element.within our design system. It follows our primitive layer principles, ensuring consistency and reusability across applications.
When to Use
- Use when you need triggering user interactions
- Appropriate for actions contexts
- Follows primitive component patterns
When Not to Use
- Avoid when simpler alternatives exist
- Don't use for navigation or form submission
- Consider alternatives for edge cases
Live Example
import React from 'react'; import Button from './components/Button'; // PropsBridge writes props to /props.json import props from '/props.json'; export default function App() { return ( <div style={{ padding: '2rem', display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh' }}> <Button variant={props.variant || 'primary'} size={props.size || 'medium'} disabled={props.disabled || false} loading={props.loading || false} > Button Example </Button> </div> ); }
Initializing sandbox...
Anatomy
Understanding the structure of the Button component helps ensure proper implementation and customization.
Component anatomy diagram will be generated based on the actual component structure.
Variants & States
Initializing sandbox...
API Reference
Props
Props documentation will be auto-generated from the component implementation.
Methods
Method documentation will be extracted from the component interface.
Accessibility
Standards Compliance
This component follows WCAG 2.1 AA guidelines and includes proper ARIA attributes, keyboard navigation, and screen reader support.
Common Pitfalls
- Overloaded with too many variants
- missing accessible name for icon-only.
Accessibility Checklist
- ✓ Keyboard navigation support
- ✓ Screen reader compatibility
- ✓ Color contrast compliance
- ✓ Focus management
- ✓ ARIA attributes
- ✓ Reduced motion support
Usage Guidelines
✓ Do
- Use consistent spacing and sizing
- Follow established patterns
- Provide clear labels and descriptions
- Test with assistive technologies
✗ Don't
- Override core functionality
- Use without proper context
- Ignore accessibility requirements
- Modify without design system approval
Examples
Basic Usage
import React from 'react'; import Button from './components/Button'; // PropsBridge writes props to /props.json import props from '/props.json'; export default function App() { return ( <div style={{ padding: '2rem', display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh' }}> <Button variant={props.variant || 'primary'} size={props.size || 'medium'} disabled={props.disabled || false} loading={props.loading || false} > Button Example </Button> </div> ); }
Initializing sandbox...
Advanced Usage
import React from 'react'; import Button from './components/Button'; // PropsBridge writes props to /props.json import props from '/props.json'; export default function App() { return ( <div style={{ padding: '2rem', display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh' }}> <Button variant={props.variant || 'primary'} size={props.size || 'medium'} disabled={props.disabled || false} loading={props.loading || false} > Button Example </Button> </div> ); }
Initializing sandbox...