d6cd8b78f1
* feat: decouple package deps and introduce yarn workspaces * update root directory * fix * fix scripts * fix lint * update path in scripts * remove yarn.lock files from packages * ignore workspace * dummy * dummy * remove comment check * revert workflow changes * ignore ws when installing gh actions * remove log * update path * fix * fix typo
15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
import React from "react";
|
|
|
|
const MenuSeparator = () => (
|
|
<div
|
|
style={{
|
|
height: "1px",
|
|
backgroundColor: "var(--default-border-color)",
|
|
margin: ".5rem 0",
|
|
}}
|
|
/>
|
|
);
|
|
|
|
export default MenuSeparator;
|
|
MenuSeparator.displayName = "DropdownMenuSeparator";
|