Initial commit. Added some UI components

This commit is contained in:
unknown
2021-09-18 13:10:53 +02:00
commit 77adabc2af
15 changed files with 17307 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { ReactJs } from '@icons-pack/react-simple-icons';
interface Props {}
export const Badge = (props: Props): JSX.Element => {
const Icon = require('@icons-pack/react-simple-icons/lib/components/Youtube');
return (
<span className='badge bg-primary'>
<ReactJs color='#61dafb' size={24} />
New
</span>
);
};