diff --git a/packages/web/components/templates/article/FontFamiliesOptions.tsx b/packages/web/components/templates/article/FontFamiliesOptions.tsx index a12c6a1e7..c6e0297b2 100644 --- a/packages/web/components/templates/article/FontFamiliesOptions.tsx +++ b/packages/web/components/templates/article/FontFamiliesOptions.tsx @@ -1,7 +1,7 @@ import { HStack, Box } from '../../elements/LayoutPrimitives' import { StyledText } from '../../elements/StyledText' import { theme } from '../../tokens/stitches.config' -import { CaretLeft, CheckCircle } from 'phosphor-react' +import { CaretLeft, Check, CheckCircle } from 'phosphor-react' const FONT_FAMILIES = [ 'Inter', @@ -38,7 +38,7 @@ function FontOption(props: FontOptionProps):JSX.Element { {props.family} {isSelected && ( - + )} ) @@ -48,24 +48,19 @@ export function FontFamiliesOptions(props: FontFamiliesListProps): JSX.Element { return ( <> - + props.setShowFontFamilies(false)} > - - - - - Back - + + Choose Font - {/* Select Font */} - + {FONT_FAMILIES.map((family) => ( ))}