svg logo
svg from CoreUI Brands by creativeLabs Łukasz Holeczek · Brand · CC0-1.0 Free for personal and commercial use.
- Name
- svg
- Set
- CoreUI Brands
- Style
- Brand
- Viewbox
- 32×32
- 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 32 32"><path fill="currentColor" d="M16 0c-1.995 0-3.667 1.287-4.328 2.896a4.5 4.5 0 0 0-.317 1.885a4.6 4.6 0 0 0-1.557-1.109a4.7 4.7 0 0 0-1.953-.344a4.67 4.67 0 0 0-3.156 1.36c-1.412 1.411-1.683 3.5-1.016 5.109c.235.572.625 1.088 1.088 1.536a4.65 4.65 0 0 0-1.864.339C1.288 12.333.001 14.005.001 16s1.287 3.667 2.896 4.328c.577.245 1.229.333 1.885.317c-.479.448-.869.975-1.109 1.557c-.667 1.609-.396 3.699 1.016 5.109c1.411 1.412 3.5 1.683 5.109 1.016c.577-.24 1.104-.631 1.557-1.109c-.021.656.072 1.308.317 1.885c.661 1.609 2.333 2.896 4.328 2.896s3.667-1.287 4.328-2.896c.24-.599.349-1.24.317-1.885c.453.475.975.869 1.557 1.109c1.609.667 3.699.396 5.109-1.016c1.412-1.411 1.683-3.5 1.016-5.109a4.6 4.6 0 0 0-1.109-1.557a4.5 4.5 0 0 0 1.885-.317c1.609-.661 2.896-2.333 2.896-4.328s-1.287-3.667-2.896-4.328a4.55 4.55 0 0 0-1.885-.317c.479-.448.869-.975 1.109-1.557c.667-1.609.396-3.699-1.016-5.109a4.67 4.67 0 0 0-3.156-1.36a4.7 4.7 0 0 0-1.953.344c-.577.24-1.104.631-1.557 1.109a4.5 4.5 0 0 0-.317-1.885C19.667 1.288 17.995.001 16 .001zm-.052 2.151c2.281-.052 3.464 2.709 1.849 4.328v5.193L21.464 8c0-2.26 2.733-3.391 4.328-1.792c1.599 1.595.468 4.328-1.792 4.328l-3.672 3.667h5.193c1.599-1.593 4.328-.463 4.328 1.797s-2.729 3.391-4.328 1.797h-5.193L24 21.464c2.26 0 3.391 2.733 1.792 4.328c-1.595 1.599-4.328.468-4.328-1.792l-3.667-3.672v5.193c1.593 1.599.463 4.328-1.797 4.328s-3.391-2.729-1.797-4.328v-5.193L10.536 24c0 2.26-2.733 3.391-4.328 1.792C4.609 24.197 5.74 21.464 8 21.464l3.672-3.667H6.479C4.88 19.39 2.151 18.26 2.151 16s2.729-3.391 4.328-1.797h5.193L8 10.536c-2.26 0-3.391-2.733-1.792-4.328C7.803 4.609 10.536 5.74 10.536 8l3.667 3.672V6.479c-1.577-1.577-.489-4.281 1.745-4.328"/></svg>
React
import type { SVGProps } from "react";
export function CibSvg(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 0c-1.995 0-3.667 1.287-4.328 2.896a4.5 4.5 0 0 0-.317 1.885a4.6 4.6 0 0 0-1.557-1.109a4.7 4.7 0 0 0-1.953-.344a4.67 4.67 0 0 0-3.156 1.36c-1.412 1.411-1.683 3.5-1.016 5.109c.235.572.625 1.088 1.088 1.536a4.65 4.65 0 0 0-1.864.339C1.288 12.333.001 14.005.001 16s1.287 3.667 2.896 4.328c.577.245 1.229.333 1.885.317c-.479.448-.869.975-1.109 1.557c-.667 1.609-.396 3.699 1.016 5.109c1.411 1.412 3.5 1.683 5.109 1.016c.577-.24 1.104-.631 1.557-1.109c-.021.656.072 1.308.317 1.885c.661 1.609 2.333 2.896 4.328 2.896s3.667-1.287 4.328-2.896c.24-.599.349-1.24.317-1.885c.453.475.975.869 1.557 1.109c1.609.667 3.699.396 5.109-1.016c1.412-1.411 1.683-3.5 1.016-5.109a4.6 4.6 0 0 0-1.109-1.557a4.5 4.5 0 0 0 1.885-.317c1.609-.661 2.896-2.333 2.896-4.328s-1.287-3.667-2.896-4.328a4.55 4.55 0 0 0-1.885-.317c.479-.448.869-.975 1.109-1.557c.667-1.609.396-3.699-1.016-5.109a4.67 4.67 0 0 0-3.156-1.36a4.7 4.7 0 0 0-1.953.344c-.577.24-1.104.631-1.557 1.109a4.5 4.5 0 0 0-.317-1.885C19.667 1.288 17.995.001 16 .001zm-.052 2.151c2.281-.052 3.464 2.709 1.849 4.328v5.193L21.464 8c0-2.26 2.733-3.391 4.328-1.792c1.599 1.595.468 4.328-1.792 4.328l-3.672 3.667h5.193c1.599-1.593 4.328-.463 4.328 1.797s-2.729 3.391-4.328 1.797h-5.193L24 21.464c2.26 0 3.391 2.733 1.792 4.328c-1.595 1.599-4.328.468-4.328-1.792l-3.667-3.672v5.193c1.593 1.599.463 4.328-1.797 4.328s-3.391-2.729-1.797-4.328v-5.193L10.536 24c0 2.26-2.733 3.391-4.328 1.792C4.609 24.197 5.74 21.464 8 21.464l3.672-3.667H6.479C4.88 19.39 2.151 18.26 2.151 16s2.729-3.391 4.328-1.797h5.193L8 10.536c-2.26 0-3.391-2.733-1.792-4.328C7.803 4.609 10.536 5.74 10.536 8l3.667 3.672V6.479c-1.577-1.577-.489-4.281 1.745-4.328"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 0c-1.995 0-3.667 1.287-4.328 2.896a4.5 4.5 0 0 0-.317 1.885a4.6 4.6 0 0 0-1.557-1.109a4.7 4.7 0 0 0-1.953-.344a4.67 4.67 0 0 0-3.156 1.36c-1.412 1.411-1.683 3.5-1.016 5.109c.235.572.625 1.088 1.088 1.536a4.65 4.65 0 0 0-1.864.339C1.288 12.333.001 14.005.001 16s1.287 3.667 2.896 4.328c.577.245 1.229.333 1.885.317c-.479.448-.869.975-1.109 1.557c-.667 1.609-.396 3.699 1.016 5.109c1.411 1.412 3.5 1.683 5.109 1.016c.577-.24 1.104-.631 1.557-1.109c-.021.656.072 1.308.317 1.885c.661 1.609 2.333 2.896 4.328 2.896s3.667-1.287 4.328-2.896c.24-.599.349-1.24.317-1.885c.453.475.975.869 1.557 1.109c1.609.667 3.699.396 5.109-1.016c1.412-1.411 1.683-3.5 1.016-5.109a4.6 4.6 0 0 0-1.109-1.557a4.5 4.5 0 0 0 1.885-.317c1.609-.661 2.896-2.333 2.896-4.328s-1.287-3.667-2.896-4.328a4.55 4.55 0 0 0-1.885-.317c.479-.448.869-.975 1.109-1.557c.667-1.609.396-3.699-1.016-5.109a4.67 4.67 0 0 0-3.156-1.36a4.7 4.7 0 0 0-1.953.344c-.577.24-1.104.631-1.557 1.109a4.5 4.5 0 0 0-.317-1.885C19.667 1.288 17.995.001 16 .001zm-.052 2.151c2.281-.052 3.464 2.709 1.849 4.328v5.193L21.464 8c0-2.26 2.733-3.391 4.328-1.792c1.599 1.595.468 4.328-1.792 4.328l-3.672 3.667h5.193c1.599-1.593 4.328-.463 4.328 1.797s-2.729 3.391-4.328 1.797h-5.193L24 21.464c2.26 0 3.391 2.733 1.792 4.328c-1.595 1.599-4.328.468-4.328-1.792l-3.667-3.672v5.193c1.593 1.599.463 4.328-1.797 4.328s-3.391-2.729-1.797-4.328v-5.193L10.536 24c0 2.26-2.733 3.391-4.328 1.792C4.609 24.197 5.74 21.464 8 21.464l3.672-3.667H6.479C4.88 19.39 2.151 18.26 2.151 16s2.729-3.391 4.328-1.797h5.193L8 10.536c-2.26 0-3.391-2.733-1.792-4.328C7.803 4.609 10.536 5.74 10.536 8l3.667 3.672V6.479c-1.577-1.577-.489-4.281 1.745-4.328"/></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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16%200c-1.995%200-3.667%201.287-4.328%202.896a4.5%204.5%200%200%200-.317%201.885a4.6%204.6%200%200%200-1.557-1.109a4.7%204.7%200%200%200-1.953-.344a4.67%204.67%200%200%200-3.156%201.36c-1.412%201.411-1.683%203.5-1.016%205.109c.235.572.625%201.088%201.088%201.536a4.65%204.65%200%200%200-1.864.339C1.288%2012.333.001%2014.005.001%2016s1.287%203.667%202.896%204.328c.577.245%201.229.333%201.885.317c-.479.448-.869.975-1.109%201.557c-.667%201.609-.396%203.699%201.016%205.109c1.411%201.412%203.5%201.683%205.109%201.016c.577-.24%201.104-.631%201.557-1.109c-.021.656.072%201.308.317%201.885c.661%201.609%202.333%202.896%204.328%202.896s3.667-1.287%204.328-2.896c.24-.599.349-1.24.317-1.885c.453.475.975.869%201.557%201.109c1.609.667%203.699.396%205.109-1.016c1.412-1.411%201.683-3.5%201.016-5.109a4.6%204.6%200%200%200-1.109-1.557a4.5%204.5%200%200%200%201.885-.317c1.609-.661%202.896-2.333%202.896-4.328s-1.287-3.667-2.896-4.328a4.55%204.55%200%200%200-1.885-.317c.479-.448.869-.975%201.109-1.557c.667-1.609.396-3.699-1.016-5.109a4.67%204.67%200%200%200-3.156-1.36a4.7%204.7%200%200%200-1.953.344c-.577.24-1.104.631-1.557%201.109a4.5%204.5%200%200%200-.317-1.885C19.667%201.288%2017.995.001%2016%20.001zm-.052%202.151c2.281-.052%203.464%202.709%201.849%204.328v5.193L21.464%208c0-2.26%202.733-3.391%204.328-1.792c1.599%201.595.468%204.328-1.792%204.328l-3.672%203.667h5.193c1.599-1.593%204.328-.463%204.328%201.797s-2.729%203.391-4.328%201.797h-5.193L24%2021.464c2.26%200%203.391%202.733%201.792%204.328c-1.595%201.599-4.328.468-4.328-1.792l-3.667-3.672v5.193c1.593%201.599.463%204.328-1.797%204.328s-3.391-2.729-1.797-4.328v-5.193L10.536%2024c0%202.26-2.733%203.391-4.328%201.792C4.609%2024.197%205.74%2021.464%208%2021.464l3.672-3.667H6.479C4.88%2019.39%202.151%2018.26%202.151%2016s2.729-3.391%204.328-1.797h5.193L8%2010.536c-2.26%200-3.391-2.733-1.792-4.328C7.803%204.609%2010.536%205.74%2010.536%208l3.667%203.672V6.479c-1.577-1.577-.489-4.281%201.745-4.328%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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16%200c-1.995%200-3.667%201.287-4.328%202.896a4.5%204.5%200%200%200-.317%201.885a4.6%204.6%200%200%200-1.557-1.109a4.7%204.7%200%200%200-1.953-.344a4.67%204.67%200%200%200-3.156%201.36c-1.412%201.411-1.683%203.5-1.016%205.109c.235.572.625%201.088%201.088%201.536a4.65%204.65%200%200%200-1.864.339C1.288%2012.333.001%2014.005.001%2016s1.287%203.667%202.896%204.328c.577.245%201.229.333%201.885.317c-.479.448-.869.975-1.109%201.557c-.667%201.609-.396%203.699%201.016%205.109c1.411%201.412%203.5%201.683%205.109%201.016c.577-.24%201.104-.631%201.557-1.109c-.021.656.072%201.308.317%201.885c.661%201.609%202.333%202.896%204.328%202.896s3.667-1.287%204.328-2.896c.24-.599.349-1.24.317-1.885c.453.475.975.869%201.557%201.109c1.609.667%203.699.396%205.109-1.016c1.412-1.411%201.683-3.5%201.016-5.109a4.6%204.6%200%200%200-1.109-1.557a4.5%204.5%200%200%200%201.885-.317c1.609-.661%202.896-2.333%202.896-4.328s-1.287-3.667-2.896-4.328a4.55%204.55%200%200%200-1.885-.317c.479-.448.869-.975%201.109-1.557c.667-1.609.396-3.699-1.016-5.109a4.67%204.67%200%200%200-3.156-1.36a4.7%204.7%200%200%200-1.953.344c-.577.24-1.104.631-1.557%201.109a4.5%204.5%200%200%200-.317-1.885C19.667%201.288%2017.995.001%2016%20.001zm-.052%202.151c2.281-.052%203.464%202.709%201.849%204.328v5.193L21.464%208c0-2.26%202.733-3.391%204.328-1.792c1.599%201.595.468%204.328-1.792%204.328l-3.672%203.667h5.193c1.599-1.593%204.328-.463%204.328%201.797s-2.729%203.391-4.328%201.797h-5.193L24%2021.464c2.26%200%203.391%202.733%201.792%204.328c-1.595%201.599-4.328.468-4.328-1.792l-3.667-3.672v5.193c1.593%201.599.463%204.328-1.797%204.328s-3.391-2.729-1.797-4.328v-5.193L10.536%2024c0%202.26-2.733%203.391-4.328%201.792C4.609%2024.197%205.74%2021.464%208%2021.464l3.672-3.667H6.479C4.88%2019.39%202.151%2018.26%202.151%2016s2.729-3.391%204.328-1.797h5.193L8%2010.536c-2.26%200-3.391-2.733-1.792-4.328C7.803%204.609%2010.536%205.74%2010.536%208l3.667%203.672V6.479c-1.577-1.577-.489-4.281%201.745-4.328%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/cib/svg.svg?color=%231a73e8&size=48