1234567891011121314151617181920212223242526272829303132 |
- {
- "title": "Example/Button",
- "parameters": {
- "server": { "id": "button" }
- },
- "args": { "label": "Button" },
- "argTypes": {
- "label": { "control": "text" },
- "primary": { "control": "boolean" },
- "backgroundColor": { "control": "color" },
- "size": {
- "control": { "type": "select", "options": ["small", "medium", "large"] }
- }
- },
- "stories": [
- {
- "name": "Primary",
- "args": { "primary": true }
- },
- {
- "name": "Secondary"
- },
- {
- "name": "Large",
- "args": { "size": "large" }
- },
- {
- "name": "Small",
- "args": { "size": "small" }
- }
- ]
- }
|