import React from 'react'; import IconLayer from '../src/components/IconLayer'; import {Wrapper} from './ui'; export default { title: 'IconLayer', component: IconLayer, }; export const IconList = () => { const types = [ 'fill-extrusion', 'raster', 'hillshade', 'heatmap', 'fill', 'background', 'line', 'symbol', 'circle', 'INVALID', ] return {types.map(type => ( ))}
ID Preview
{type}
};