You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
541 B

  1. import {createIconGrid, extractGlyphClassNames} from "../icon-grid/IconGridComponent";
  2. import iconsScss from "../../_global/styles/icons.scss?raw";
  3. const iconClassNames = extractGlyphClassNames(iconsScss, 'icon');
  4. export default {
  5. title: 'Styleguide/Icons',
  6. parameters: {
  7. docs: {
  8. description: {
  9. component: `Alle Icons aus \`icons.scss\` (${iconClassNames.length} Stück), automatisch generiert.`,
  10. },
  11. },
  12. },
  13. };
  14. export const AlleIcons = () => createIconGrid({classNames: iconClassNames, variant: 'icons'});