import styles from '@components/Divider.module.css'; import * as React from 'react'; interface DividerProps extends React.HTMLAttributes { children?: React.ReactNode; type?: string | any; style?: any; } const Divider: React.FC = ({ children, style, type }) => { if (type === 'GRADIENT') { return
; } if (type === 'DOUBLE') { return (
); } return (
); }; export default Divider;