import { makeStyles } from "@saleor/macaw-ui"; import clsx from "clsx"; import React from "react"; interface HrProps { className?: string; } const useStyles = makeStyles( theme => ({ root: { backgroundColor: theme.palette.divider, border: "none", display: "block", height: 1, margin: 0, width: "100%", }, }), { name: "Hr" }, ); export const Hr: React.FC = props => { const { className } = props; const classes = useStyles(props); return
; }; Hr.displayName = "Hr"; export default Hr;