~chrono/personal-website-alyx

56b0e0ed5019075394c8db99915179f4f7a986df — Michael Gummere 4 months ago 0443343
add sourcehut brand icon
1 files changed, 25 insertions(+), 0 deletions(-)

A components/Footer/BrandSourcehut.tsx
A components/Footer/BrandSourcehut.tsx => components/Footer/BrandSourcehut.tsx +25 -0
@@ 0,0 1,25 @@
function IconBrandSourcehut({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      class="icon icon-tabler icon-tabler-brand-discord"
      width={size}
      height={size}
      viewBox="0 0 512 512"
      // stroke-width={stroke}
      // stroke={color}
      fill={color}
      // stroke-linecap="round"
      // stroke-linejoin="round"
      {...props}
    >
      <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" />
    </svg>
  );
}
export default IconBrandSourcehut;