import React from 'react'; import { cx, css } from '@emotion/css'; type Props = { name: string; isInitial?: boolean; }; const uppercaseClass = css({ textTransform: 'uppercase', }); export const SectionLabel = ({ name, isInitial }: Props) => ( );