micro/packages/web/src/components/dropdown/dropdown-divider.tsx

7 lines
199 B
TypeScript

import { FunctionComponent } from "react";
import style from "./dropdown.module.css";
export const DropdownDivider: FunctionComponent = () => {
return <hr className={style.dropdownDivider} />;
};