saleor-dashboard/src/components/Hr.tsx
Krzysztof Żuraw 180e3c56e6
Migrate product create page to new MacawUI (#3372)
Co-authored-by: Michał Droń <droniu@droniu.dev>
Co-authored-by: timur <timuric@gmail.com>
Co-authored-by: wojteknowacki <wojciech.nowacki@saleor.io>
2023-05-04 10:57:18 +02:00

21 lines
419 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={1}
/>
);
Hr.displayName = "Hr";
export default Hr;