dishplanner/frontend/src/components/ui/Hr.tsx

14 lines
No EOL
279 B
TypeScript

import { FC } from "react"
import classNames from "classnames"
interface HrProps {
className?: string;
}
const Hr: FC<HrProps> = ({ className }) => {
const styles = classNames("my-4 border-secondary", className)
return <hr className={styles}/>
}
export default Hr