diff --git a/jsapp/js/components/common/ActionIcon.tsx b/jsapp/js/components/common/ActionIcon.tsx index 376fddd69c..8964fd6c6c 100644 --- a/jsapp/js/components/common/ActionIcon.tsx +++ b/jsapp/js/components/common/ActionIcon.tsx @@ -3,7 +3,7 @@ import { createPolymorphicComponent, } from '@mantine/core'; import type {ActionIconProps as ActionIconPropsMantine} from '@mantine/core/lib/components'; -import Icon, { IconSize} from './icon'; +import Icon, {IconSize} from './icon'; import type {IconName} from 'jsapp/fonts/k-icons'; import {forwardRef} from 'react'; @@ -14,7 +14,7 @@ export interface ActionIconProps extends Omit { const ActionIcon = forwardRef( ({iconName, ...props}, ref) => { - // Currently, our icon sizes only use a single letter instead of + // Currently, our icon sizes only use a single letter instead of // Mantine's 'sm', 'md', etc. So here we grab the first letter. const iconSize = props.size[0] as IconSize; return (