saleor-dashboard/src/components/Hr.tsx

22 lines
419 B
TypeScript
Raw Normal View History

import { Box } from "@saleor/macaw-ui/next";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
/**
* @deprecated use `Divider` component from `@saleor/macaw-ui/next`
*/
export const Hr: React.FC<{
2019-06-19 14:40:52 +00:00
className?: string;
}> = ({ className }) => (
<Box
as="hr"
className={className}
backgroundColor="surfaceNeutralDepressed"
borderWidth={0}
width="100%"
height={1}
/>
2019-12-03 15:28:40 +00:00
);
2019-06-19 14:40:52 +00:00
Hr.displayName = "Hr";
export default Hr;