From a6ff5eee45215effb3344cb5d631a27a7c0369aa Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 22 Sep 2023 19:34:01 +0200 Subject: refactor(components): rewrite form components --- src/components/molecules/forms/flipping-label.tsx | 37 ----------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/components/molecules/forms/flipping-label.tsx (limited to 'src/components/molecules/forms/flipping-label.tsx') diff --git a/src/components/molecules/forms/flipping-label.tsx b/src/components/molecules/forms/flipping-label.tsx deleted file mode 100644 index c85642b..0000000 --- a/src/components/molecules/forms/flipping-label.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { FC } from 'react'; -import { Close, Label, type LabelProps } from '../../atoms'; -import styles from './flipping-label.module.scss'; - -export type FlippingLabelProps = Pick< - LabelProps, - 'aria-label' | 'className' | 'htmlFor' -> & { - /** - * The front icon. - */ - children: JSX.Element; - /** - * Which side of the label should be displayed? True for the close icon. - */ - isActive: boolean; -}; - -export const FlippingLabel: FC = ({ - children, - className = '', - isActive, - ...props -}) => { - const wrapperModifier = isActive ? 'wrapper--active' : 'wrapper--inactive'; - - return ( - - ); -}; -- cgit v1.2.3