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

13 lines
248 B
TypeScript
Raw Normal View History

2025-10-13 14:57:11 +02:00
import classNames from "classnames"
interface HrProps {
className?: string;
}
2025-11-09 13:09:22 +01:00
const Hr = ({ className }: HrProps) => {
2025-10-13 14:57:11 +02:00
const styles = classNames("my-4 border-secondary", className)
return <hr className={styles}/>
}
export default Hr