mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
31 lines
791 B
Plaintext
31 lines
791 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import { YourComponent } from './your-component'
|
|
import { IconA, IconB, IconC, IconD, IconE } from './icons';
|
|
|
|
// Maps the icons to a JSON serializable object to be safely used with the argTypes
|
|
const iconMap = {IconA, IconB, IconC, IconD, IconE };
|
|
|
|
export default {
|
|
component: YourComponent,
|
|
title:'My Story with Icons',
|
|
argTypes: {
|
|
// creates a specific argType based on the iconMap object
|
|
icon: {
|
|
control: {
|
|
type: 'select',
|
|
options: Object.keys(iconMap),
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const Template = ({ icon, ...rest }) => {
|
|
// retrieves the appropriate icon passes it as a component prop
|
|
const selectedIcon = iconMap[icon];
|
|
return <YourComponent icon={selectedIcon} {...rest}/>;
|
|
};
|
|
``` |