import { ComponentSlotStylesPrepared, ICSSInJSStyle } from '@fluentui/styles'; import { FormMessageStylesProps } from '../../../../components/Form/FormMessage'; import { FormMessageVariables } from './formMessageVariables'; export const formMessageStyles: ComponentSlotStylesPrepared = { root: ({ props: p, variables: v }): ICSSInJSStyle => ({ display: 'block', paddingLeft: v.paddingLeft, ...(p.error && { color: v.colorScheme.red.foreground }), }), };