saleor-dashboard/src/components/Hr.tsx
2023-05-30 08:47:21 +02:00

21 lines
420 B
TypeScript

import { Box } from "@saleor/macaw-ui/next";
import React from "react";
/**
* @deprecated use `Divider` component from `@saleor/macaw-ui/next`
*/
export const Hr: React.FC<{
className?: string;
}> = ({ className }) => (
<Box
as="hr"
className={className}
backgroundColor="surfaceNeutralDepressed"
borderWidth={0}
width="100%"
height="px"
/>
);
Hr.displayName = "Hr";
export default Hr;