Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
React UI Components use primarilyMaterial Design Icons
Didn't found your icon ?
// Usage examples
import React from 'react';
import { Icon } from '@assenti/rui-components';
funcation Example() {
const CustomIconSvg = () => {
return (
<svg style={{ width: 24, height: 24 }} viewBox="0 0 24 24">
<path fill="gray" d="M12 3L1 9L5 11.18V17.18L12 21L19 17.18V11.18L21 10.09V17H23V9L12 3M18.82 9L12 12.72L5.18 9L12 5.28L18.82 9M17 16L12 18.72L7 16V12.27L12 15L17 12.27V16Z" />
</svg>
)
}
return (
<>
<Icon custom={<CustomIconSvg/>}/>
</>
)
}