Initial open source commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { FunctionComponent } from "react";
|
||||
|
||||
export const SmallTitle: FunctionComponent<{ className?: string }> = ({
|
||||
className,
|
||||
children,
|
||||
}) => {
|
||||
return (
|
||||
<h3 className={`font-sans font-bold text-lg ${className}`}>{children}</h3>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user