import { Story, Canvas, ArgsTable } from '@storybook/addon-docs'; import { AvatarBase } from '../'; import { AvatarFavicon } from './avatar-favicon'; # AvatarFavicon The `AvatarFavicon` is an image component that renders an icon that is provided in the form of a URL. ## Props The `AvatarFavicon` accepts all props below as well as all [Box](/docs/ui-components-ui-box-box-stories-js--default-story) component props `AvatarFavicon` accepts all [AvatarBase](/docs/ui-components-component-library-avatar-base-avatar-base-stories-js--default-story#props) component props ### Size Use the `size` prop to set the size of the `AvatarFavicon`. Optional: `AVATAR_FAVICON_SIZES` from `./ui/components/component-library` object can be used instead of `SIZES` Possible sizes include: - `SIZES.XS` 16px - `SIZES.SM` 24px - `SIZES.MD` 32px - `SIZES.LG` 40px - `SIZES.XL` 48px Defaults to `SIZES.MD` ```jsx import { SIZES } from '../../../helpers/constants/design-system'; import { AvatarFavicon } from '../ui/component-library'; ``` ### Src Use the `src` prop to set the image to be rendered of the `AvatarFavicon`. ```jsx import { AvatarFavicon } from '../ui/component-library'; ``` ### Fallback Icon Props If there is no `src` then in that case an [icon](/docs/ui-components-component-library-icon-icon-stories-js--default-story) will be used as the fallback display and it can be customised via `fallbackIconProps`.