Fix: Moved Divider to v2

This commit is contained in:
Daniel Hougaard
2024-04-09 00:20:18 -07:00
parent 24a286e898
commit f038b28c1c
2 changed files with 2 additions and 3 deletions

View File

@@ -4,12 +4,10 @@ interface IProps {
className?: string;
}
const Divider = ({ className }: IProps): JSX.Element => {
export const Divider = ({ className }: IProps): JSX.Element => {
return (
<div className={twMerge("flex items-center px-2 opacity-50", className)}>
<div aria-hidden="true" className="h-5 w-full grow border border-t border-mineshaft-200" />
</div>
);
};
export default Divider;

View File

@@ -0,0 +1 @@
export { Divider } from "./Divider";