Files
notesnook/packages/editor/src/components/menu/menu-separator.tsx

17 lines
261 B
TypeScript
Raw Normal View History

import { Box } from "@streetwriters/rebass";
export function MenuSeparator() {
return (
<Box
as="li"
sx={{
width: "95%",
height: "0.5px",
bg: "border",
my: 2,
alignSelf: "center"
}}
/>
);
}