1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Profile/SocialMediaList/SocialMediaIcons/Icon.tsx

20 lines
417 B
TypeScript
Raw Normal View History

import classNames from "clsx"
2021-07-04 19:56:05 +02:00
export const Icon = (props: React.SVGProps<SVGSVGElement>): JSX.Element => {
2021-07-04 19:56:05 +02:00
const { children, className, ...rest } = props
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
2021-07-04 19:56:05 +02:00
className={classNames(
"h-8 w-8 fill-current text-black dark:text-white",
className,
2021-07-04 19:56:05 +02:00
)}
{...rest}
>
{children}
</svg>
)
}