Initial open source commit
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user