diff --git a/src/front/Components/DesignSystem/Separator/index.tsx b/src/front/Components/DesignSystem/Separator/index.tsx index 21ccbc1e..bb9c4389 100644 --- a/src/front/Components/DesignSystem/Separator/index.tsx +++ b/src/front/Components/DesignSystem/Separator/index.tsx @@ -1,7 +1,7 @@ +import classNames from "classnames"; import React from "react"; import classes from "./classes.module.scss"; -import classNames from "classnames"; export enum ESeperatorColor { LIGHT = "light", @@ -19,15 +19,16 @@ type IProps = { color?: ESeperatorColor; direction?: ESeperatorDirection; size?: number; + thickness?: number; }; export default function Separator(props: IProps) { - const { color = ESeperatorColor.DEFAULT, direction = ESeperatorDirection.HORIZONTAL, size } = props; + const { color = ESeperatorColor.DEFAULT, direction = ESeperatorDirection.HORIZONTAL, size, thickness = 1 } = props; return (
); }