svg logo
svg from Simple Icons by Simple Icons Collaborators · Brand · CC0-1.0 Free for personal and commercial use.
- Name
- svg
- Set
- Simple Icons
- Style
- Brand
- Viewbox
- 24×24
- License
- CC0 1.0
The same logo in other sets
Use the svg logo
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 0c-1.497 0-2.749.965-3.248 2.17a3.45 3.45 0 0 0-.238 1.416a3.5 3.5 0 0 0-1.168-.834a3.5 3.5 0 0 0-1.463-.256a3.5 3.5 0 0 0-2.367 1.02c-1.06 1.058-1.263 2.625-.764 3.83c.179.432.47.82.82 1.154a3.5 3.5 0 0 0-1.402.252C.965 9.251 0 10.502 0 12c0 1.497.965 2.749 2.17 3.248c.437.181.924.25 1.414.236c-.357.338-.65.732-.832 1.17c-.499 1.205-.295 2.772.764 3.83c1.058 1.06 2.625 1.263 3.83.764c.437-.181.83-.476 1.168-.832c-.014.49.057.977.238 1.414C9.251 23.035 10.502 24 12 24c1.497 0 2.749-.965 3.248-2.17a3.45 3.45 0 0 0 .238-1.416c.338.356.73.653 1.168.834c1.205.499 2.772.295 3.83-.764c1.06-1.058 1.263-2.625.764-3.83a3.5 3.5 0 0 0-.834-1.168a3.45 3.45 0 0 0 1.416-.238C23.035 14.749 24 13.498 24 12c0-1.497-.965-2.749-2.17-3.248a3.5 3.5 0 0 0-1.414-.236c.357-.338.65-.732.832-1.17c.499-1.205.295-2.772-.764-3.83a3.5 3.5 0 0 0-2.367-1.02a3.5 3.5 0 0 0-1.463.256c-.437.181-.83.475-1.168.832a3.45 3.45 0 0 0-.238-1.414C14.749.965 13.498 0 12 0m-.041 1.613a1.902 1.902 0 0 1 1.387 3.246v3.893L16.098 6A1.902 1.902 0 1 1 18 7.902l-2.752 2.752h3.893a1.902 1.902 0 1 1 0 2.692h-3.893L18 16.098A1.902 1.902 0 1 1 16.098 18l-2.752-2.752v3.893a1.902 1.902 0 1 1-2.692 0v-3.893L7.902 18A1.902 1.902 0 1 1 6 16.098l2.752-2.752H4.859a1.902 1.902 0 1 1 0-2.692h3.893L6 7.902A1.902 1.902 0 1 1 7.902 6l2.752 2.752V4.859a1.902 1.902 0 0 1 1.305-3.246"/></svg>
React
import type { SVGProps } from "react";
export function SimpleIconsSvg(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 0c-1.497 0-2.749.965-3.248 2.17a3.45 3.45 0 0 0-.238 1.416a3.5 3.5 0 0 0-1.168-.834a3.5 3.5 0 0 0-1.463-.256a3.5 3.5 0 0 0-2.367 1.02c-1.06 1.058-1.263 2.625-.764 3.83c.179.432.47.82.82 1.154a3.5 3.5 0 0 0-1.402.252C.965 9.251 0 10.502 0 12c0 1.497.965 2.749 2.17 3.248c.437.181.924.25 1.414.236c-.357.338-.65.732-.832 1.17c-.499 1.205-.295 2.772.764 3.83c1.058 1.06 2.625 1.263 3.83.764c.437-.181.83-.476 1.168-.832c-.014.49.057.977.238 1.414C9.251 23.035 10.502 24 12 24c1.497 0 2.749-.965 3.248-2.17a3.45 3.45 0 0 0 .238-1.416c.338.356.73.653 1.168.834c1.205.499 2.772.295 3.83-.764c1.06-1.058 1.263-2.625.764-3.83a3.5 3.5 0 0 0-.834-1.168a3.45 3.45 0 0 0 1.416-.238C23.035 14.749 24 13.498 24 12c0-1.497-.965-2.749-2.17-3.248a3.5 3.5 0 0 0-1.414-.236c.357-.338.65-.732.832-1.17c.499-1.205.295-2.772-.764-3.83a3.5 3.5 0 0 0-2.367-1.02a3.5 3.5 0 0 0-1.463.256c-.437.181-.83.475-1.168.832a3.45 3.45 0 0 0-.238-1.414C14.749.965 13.498 0 12 0m-.041 1.613a1.902 1.902 0 0 1 1.387 3.246v3.893L16.098 6A1.902 1.902 0 1 1 18 7.902l-2.752 2.752h3.893a1.902 1.902 0 1 1 0 2.692h-3.893L18 16.098A1.902 1.902 0 1 1 16.098 18l-2.752-2.752v3.893a1.902 1.902 0 1 1-2.692 0v-3.893L7.902 18A1.902 1.902 0 1 1 6 16.098l2.752-2.752H4.859a1.902 1.902 0 1 1 0-2.692h3.893L6 7.902A1.902 1.902 0 1 1 7.902 6l2.752 2.752V4.859a1.902 1.902 0 0 1 1.305-3.246"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 0c-1.497 0-2.749.965-3.248 2.17a3.45 3.45 0 0 0-.238 1.416a3.5 3.5 0 0 0-1.168-.834a3.5 3.5 0 0 0-1.463-.256a3.5 3.5 0 0 0-2.367 1.02c-1.06 1.058-1.263 2.625-.764 3.83c.179.432.47.82.82 1.154a3.5 3.5 0 0 0-1.402.252C.965 9.251 0 10.502 0 12c0 1.497.965 2.749 2.17 3.248c.437.181.924.25 1.414.236c-.357.338-.65.732-.832 1.17c-.499 1.205-.295 2.772.764 3.83c1.058 1.06 2.625 1.263 3.83.764c.437-.181.83-.476 1.168-.832c-.014.49.057.977.238 1.414C9.251 23.035 10.502 24 12 24c1.497 0 2.749-.965 3.248-2.17a3.45 3.45 0 0 0 .238-1.416c.338.356.73.653 1.168.834c1.205.499 2.772.295 3.83-.764c1.06-1.058 1.263-2.625.764-3.83a3.5 3.5 0 0 0-.834-1.168a3.45 3.45 0 0 0 1.416-.238C23.035 14.749 24 13.498 24 12c0-1.497-.965-2.749-2.17-3.248a3.5 3.5 0 0 0-1.414-.236c.357-.338.65-.732.832-1.17c.499-1.205.295-2.772-.764-3.83a3.5 3.5 0 0 0-2.367-1.02a3.5 3.5 0 0 0-1.463.256c-.437.181-.83.475-1.168.832a3.45 3.45 0 0 0-.238-1.414C14.749.965 13.498 0 12 0m-.041 1.613a1.902 1.902 0 0 1 1.387 3.246v3.893L16.098 6A1.902 1.902 0 1 1 18 7.902l-2.752 2.752h3.893a1.902 1.902 0 1 1 0 2.692h-3.893L18 16.098A1.902 1.902 0 1 1 16.098 18l-2.752-2.752v3.893a1.902 1.902 0 1 1-2.692 0v-3.893L7.902 18A1.902 1.902 0 1 1 6 16.098l2.752-2.752H4.859a1.902 1.902 0 1 1 0-2.692h3.893L6 7.902A1.902 1.902 0 1 1 7.902 6l2.752 2.752V4.859a1.902 1.902 0 0 1 1.305-3.246"/></svg> </template>
CSS
.icon-svg {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12%200c-1.497%200-2.749.965-3.248%202.17a3.45%203.45%200%200%200-.238%201.416a3.5%203.5%200%200%200-1.168-.834a3.5%203.5%200%200%200-1.463-.256a3.5%203.5%200%200%200-2.367%201.02c-1.06%201.058-1.263%202.625-.764%203.83c.179.432.47.82.82%201.154a3.5%203.5%200%200%200-1.402.252C.965%209.251%200%2010.502%200%2012c0%201.497.965%202.749%202.17%203.248c.437.181.924.25%201.414.236c-.357.338-.65.732-.832%201.17c-.499%201.205-.295%202.772.764%203.83c1.058%201.06%202.625%201.263%203.83.764c.437-.181.83-.476%201.168-.832c-.014.49.057.977.238%201.414C9.251%2023.035%2010.502%2024%2012%2024c1.497%200%202.749-.965%203.248-2.17a3.45%203.45%200%200%200%20.238-1.416c.338.356.73.653%201.168.834c1.205.499%202.772.295%203.83-.764c1.06-1.058%201.263-2.625.764-3.83a3.5%203.5%200%200%200-.834-1.168a3.45%203.45%200%200%200%201.416-.238C23.035%2014.749%2024%2013.498%2024%2012c0-1.497-.965-2.749-2.17-3.248a3.5%203.5%200%200%200-1.414-.236c.357-.338.65-.732.832-1.17c.499-1.205.295-2.772-.764-3.83a3.5%203.5%200%200%200-2.367-1.02a3.5%203.5%200%200%200-1.463.256c-.437.181-.83.475-1.168.832a3.45%203.45%200%200%200-.238-1.414C14.749.965%2013.498%200%2012%200m-.041%201.613a1.902%201.902%200%200%201%201.387%203.246v3.893L16.098%206A1.902%201.902%200%201%201%2018%207.902l-2.752%202.752h3.893a1.902%201.902%200%201%201%200%202.692h-3.893L18%2016.098A1.902%201.902%200%201%201%2016.098%2018l-2.752-2.752v3.893a1.902%201.902%200%201%201-2.692%200v-3.893L7.902%2018A1.902%201.902%200%201%201%206%2016.098l2.752-2.752H4.859a1.902%201.902%200%201%201%200-2.692h3.893L6%207.902A1.902%201.902%200%201%201%207.902%206l2.752%202.752V4.859a1.902%201.902%200%200%201%201.305-3.246%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12%200c-1.497%200-2.749.965-3.248%202.17a3.45%203.45%200%200%200-.238%201.416a3.5%203.5%200%200%200-1.168-.834a3.5%203.5%200%200%200-1.463-.256a3.5%203.5%200%200%200-2.367%201.02c-1.06%201.058-1.263%202.625-.764%203.83c.179.432.47.82.82%201.154a3.5%203.5%200%200%200-1.402.252C.965%209.251%200%2010.502%200%2012c0%201.497.965%202.749%202.17%203.248c.437.181.924.25%201.414.236c-.357.338-.65.732-.832%201.17c-.499%201.205-.295%202.772.764%203.83c1.058%201.06%202.625%201.263%203.83.764c.437-.181.83-.476%201.168-.832c-.014.49.057.977.238%201.414C9.251%2023.035%2010.502%2024%2012%2024c1.497%200%202.749-.965%203.248-2.17a3.45%203.45%200%200%200%20.238-1.416c.338.356.73.653%201.168.834c1.205.499%202.772.295%203.83-.764c1.06-1.058%201.263-2.625.764-3.83a3.5%203.5%200%200%200-.834-1.168a3.45%203.45%200%200%200%201.416-.238C23.035%2014.749%2024%2013.498%2024%2012c0-1.497-.965-2.749-2.17-3.248a3.5%203.5%200%200%200-1.414-.236c.357-.338.65-.732.832-1.17c.499-1.205.295-2.772-.764-3.83a3.5%203.5%200%200%200-2.367-1.02a3.5%203.5%200%200%200-1.463.256c-.437.181-.83.475-1.168.832a3.45%203.45%200%200%200-.238-1.414C14.749.965%2013.498%200%2012%200m-.041%201.613a1.902%201.902%200%200%201%201.387%203.246v3.893L16.098%206A1.902%201.902%200%201%201%2018%207.902l-2.752%202.752h3.893a1.902%201.902%200%201%201%200%202.692h-3.893L18%2016.098A1.902%201.902%200%201%201%2016.098%2018l-2.752-2.752v3.893a1.902%201.902%200%201%201-2.692%200v-3.893L7.902%2018A1.902%201.902%200%201%201%206%2016.098l2.752-2.752H4.859a1.902%201.902%200%201%201%200-2.692h3.893L6%207.902A1.902%201.902%200%201%201%207.902%206l2.752%202.752V4.859a1.902%201.902%200%200%201%201.305-3.246%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/simple-icons/svg.svg?color=%231a73e8&size=48