button.stories.json 636 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "title": "Example/Button",
  3. "parameters": {
  4. "server": { "id": "button" }
  5. },
  6. "args": { "label": "Button" },
  7. "argTypes": {
  8. "label": { "control": "text" },
  9. "primary": { "control": "boolean" },
  10. "backgroundColor": { "control": "color" },
  11. "size": {
  12. "control": { "type": "select", "options": ["small", "medium", "large"] }
  13. }
  14. },
  15. "stories": [
  16. {
  17. "name": "Primary",
  18. "args": { "primary": true }
  19. },
  20. {
  21. "name": "Secondary"
  22. },
  23. {
  24. "name": "Large",
  25. "args": { "size": "large" }
  26. },
  27. {
  28. "name": "Small",
  29. "args": { "size": "small" }
  30. }
  31. ]
  32. }