1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

feat: add Open source section

This commit is contained in:
Divlo
2021-07-04 19:56:05 +02:00
parent 2d68ce59ca
commit ccf5d42c19
11 changed files with 1075 additions and 1559 deletions

View File

@ -1,11 +1,16 @@
import classNames from 'classnames'
export const Icon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
const { children, ...rest } = props
const { children, className, ...rest } = props
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 24 24'
className='dark:text-white text-black w-8 h-8 fill-current'
className={classNames(
'dark:text-white text-black w-8 h-8 fill-current',
className
)}
{...rest}
>
{children}