Initial open source commit

This commit is contained in:
Eric Allam
2022-03-01 09:31:09 +00:00
commit d928661fea
157 changed files with 31966 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { FunctionComponent } from "react";
export const BodyBold: FunctionComponent<{ className?: string }> = ({
className,
children,
}) => {
return (
<p className={`font-sans text-base font-bold ${className}`}>{children}</p>
);
};