// Each exported component in the package should have its own stories file import React from 'react'; import type { Meta, StoryObj } from '@storybook/react-vite'; import { Grid } from '@availity/mui-layout'; import { FaSvgIconProps } from './FaSvgIcon'; import { HomeIcon } from './Icons/Common'; const meta: Meta = { title: 'Components/Icon/Named Icons', component: HomeIcon, tags: ['autodocs'], argTypes: { color: { control: 'text', }, fontSize: { control: 'text', }, }, }; export default meta; /** Any named icon, like the `` below, extend mui's `SvgIcon` component and accept the same parameters. * * Icon is `aria-hidden` by default. If not accompanied with any on screen text then must pass `aria-hidden={false}`. */ export const _HomeIcon: StoryObj = { render: (args: Omit) => , }; export const _Sizes: StoryObj = { render: () => ( Inherit (default) XXSmall XSmall Small Medium Large XLarge ), };