diff --git a/src/components/@shared/Form/Input/Label.module.css b/src/components/@shared/Form/Input/Label.module.css index 0eb0382ae..59bfe7cee 100644 --- a/src/components/@shared/Form/Input/Label.module.css +++ b/src/components/@shared/Form/Input/Label.module.css @@ -6,11 +6,3 @@ display: block; margin-bottom: calc(var(--spacer) / 4); } - -.required:after { - content: '*'; - font-size: var(--font-size-base); - color: var(--color-secondary); - display: inline-block; - margin-left: 0.1rem; -} diff --git a/src/components/@shared/Form/Input/Label.tsx b/src/components/@shared/Form/Input/Label.tsx index 4a5ed2006..ece8246f1 100644 --- a/src/components/@shared/Form/Input/Label.tsx +++ b/src/components/@shared/Form/Input/Label.tsx @@ -2,19 +2,13 @@ import React, { ReactElement, ReactNode } from 'react' import styles from './Label.module.css' const Label = ({ - required, children, ...props }: { - required?: boolean children: ReactNode htmlFor: string }): ReactElement => ( -