chore: move all components into Components dir with pascal case (#934)

This commit is contained in:
Mo
2022-03-17 11:38:45 -05:00
committed by GitHub
parent 42b84ef9b1
commit c29e45795d
89 changed files with 370 additions and 259 deletions

View File

@@ -0,0 +1,10 @@
import { FunctionalComponent } from 'preact';
type Props = {
classes?: string;
};
export const HorizontalSeparator: FunctionalComponent<Props> = ({
classes = '',
}) => {
return <hr className={`h-1px w-full bg-border no-border ${classes}`} />;
};