import { ComponentSlotStylesPrepared, ICSSInJSStyle } from '@fluentui/styles'; import { svgIconClassName } from '@fluentui/react-icons-northstar'; import { AttachmentIconStylesProps } from '../../../../components/Attachment/AttachmentIcon'; import { AttachmentVariables } from './attachmentVariables'; export const attachmentIconStyles: ComponentSlotStylesPrepared = { root: ({ variables: v }): ICSSInJSStyle => ({ height: v.iconSize, width: v.iconSize, marginRight: v.iconSpace, [`& .${svgIconClassName}`]: { height: '100%', width: '100%', '& svg': { height: '100%', width: '100%', }, }, }), };