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

14 lines
279 B
TypeScript
Raw Normal View History

2025-10-13 14:57:11 +02:00
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