fish2 happy icon
fish2-happy from Codicons by Microsoft Corporation · Regular · CC-BY-4.0 Attribution required.
- Name
- fish2-happy
- Set
- Codicons
- Style
- Regular
- Viewbox
- 16×16
- License
- CC BY 4.0
Related icons in Codicons
Use the fish2 happy icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M6.42 2.3c-2.11 1-3.64 2.51-4.19 4.26c-.22.69-.68 1.28-1.34 1.57l-.43.18C.18 8.43.01 8.7.01 9v.48c0 .31.19.59.49.7l1.16.44c.12.04.23.1.34.16c.47-.14.88-.36 1.16-.63c.2-.2.51-.2.71 0s.2.51 0 .71c-.25.25-.6.47-.98.65c.05.07.11.13.16.2c.81 1.18 2.08 2.01 3.73 2.55c-1.09-1.62-1.76-3.82-1.76-6.25c0-2.16.53-4.15 1.42-5.7zM3.5 8.13c-.35 0-.63-.28-.63-.63s.28-.63.63-.63s.63.28.63.63s-.28.63-.63.63m8-.13c0-2.29.61-4.36 1.61-5.88c.14-.22.16-.51.03-.74A.74.74 0 0 0 12.5 1c-.27 0-.54.01-.81.02C10.09 2.39 9 5 9 8s1.09 5.61 2.69 6.98c.27 0 .53.02.81.02c.27 0 .51-.15.64-.38s.11-.52-.03-.74c-.99-1.53-1.61-3.6-1.61-5.88m-1.31-6.82c-.74.11-1.45.27-2.12.48C6.82 3.12 6 5.42 6 8.01c0 2.76.92 5.2 2.32 6.64c.6.12 1.24.2 1.92.26C8.87 13.26 8 10.78 8 8.01s.85-5.17 2.19-6.82zm4.94 3.84c-.17-.26-.54-.33-.77-.11c-.48.47-1.05.85-1.67 1.12c-.11.64-.19 1.29-.19 1.96s.08 1.33.19 1.96c.62.27 1.19.65 1.67 1.12c.22.22.6.16.77-.11c.55-.86.87-1.88.87-2.98s-.32-2.12-.87-2.98z"/></svg>
React
import type { SVGProps } from "react";
export function CodiconFish2Happy(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M6.42 2.3c-2.11 1-3.64 2.51-4.19 4.26c-.22.69-.68 1.28-1.34 1.57l-.43.18C.18 8.43.01 8.7.01 9v.48c0 .31.19.59.49.7l1.16.44c.12.04.23.1.34.16c.47-.14.88-.36 1.16-.63c.2-.2.51-.2.71 0s.2.51 0 .71c-.25.25-.6.47-.98.65c.05.07.11.13.16.2c.81 1.18 2.08 2.01 3.73 2.55c-1.09-1.62-1.76-3.82-1.76-6.25c0-2.16.53-4.15 1.42-5.7zM3.5 8.13c-.35 0-.63-.28-.63-.63s.28-.63.63-.63s.63.28.63.63s-.28.63-.63.63m8-.13c0-2.29.61-4.36 1.61-5.88c.14-.22.16-.51.03-.74A.74.74 0 0 0 12.5 1c-.27 0-.54.01-.81.02C10.09 2.39 9 5 9 8s1.09 5.61 2.69 6.98c.27 0 .53.02.81.02c.27 0 .51-.15.64-.38s.11-.52-.03-.74c-.99-1.53-1.61-3.6-1.61-5.88m-1.31-6.82c-.74.11-1.45.27-2.12.48C6.82 3.12 6 5.42 6 8.01c0 2.76.92 5.2 2.32 6.64c.6.12 1.24.2 1.92.26C8.87 13.26 8 10.78 8 8.01s.85-5.17 2.19-6.82zm4.94 3.84c-.17-.26-.54-.33-.77-.11c-.48.47-1.05.85-1.67 1.12c-.11.64-.19 1.29-.19 1.96s.08 1.33.19 1.96c.62.27 1.19.65 1.67 1.12c.22.22.6.16.77-.11c.55-.86.87-1.88.87-2.98s-.32-2.12-.87-2.98z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M6.42 2.3c-2.11 1-3.64 2.51-4.19 4.26c-.22.69-.68 1.28-1.34 1.57l-.43.18C.18 8.43.01 8.7.01 9v.48c0 .31.19.59.49.7l1.16.44c.12.04.23.1.34.16c.47-.14.88-.36 1.16-.63c.2-.2.51-.2.71 0s.2.51 0 .71c-.25.25-.6.47-.98.65c.05.07.11.13.16.2c.81 1.18 2.08 2.01 3.73 2.55c-1.09-1.62-1.76-3.82-1.76-6.25c0-2.16.53-4.15 1.42-5.7zM3.5 8.13c-.35 0-.63-.28-.63-.63s.28-.63.63-.63s.63.28.63.63s-.28.63-.63.63m8-.13c0-2.29.61-4.36 1.61-5.88c.14-.22.16-.51.03-.74A.74.74 0 0 0 12.5 1c-.27 0-.54.01-.81.02C10.09 2.39 9 5 9 8s1.09 5.61 2.69 6.98c.27 0 .53.02.81.02c.27 0 .51-.15.64-.38s.11-.52-.03-.74c-.99-1.53-1.61-3.6-1.61-5.88m-1.31-6.82c-.74.11-1.45.27-2.12.48C6.82 3.12 6 5.42 6 8.01c0 2.76.92 5.2 2.32 6.64c.6.12 1.24.2 1.92.26C8.87 13.26 8 10.78 8 8.01s.85-5.17 2.19-6.82zm4.94 3.84c-.17-.26-.54-.33-.77-.11c-.48.47-1.05.85-1.67 1.12c-.11.64-.19 1.29-.19 1.96s.08 1.33.19 1.96c.62.27 1.19.65 1.67 1.12c.22.22.6.16.77-.11c.55-.86.87-1.88.87-2.98s-.32-2.12-.87-2.98z"/></svg> </template>
CSS
.icon-fish2-happy {
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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.42%202.3c-2.11%201-3.64%202.51-4.19%204.26c-.22.69-.68%201.28-1.34%201.57l-.43.18C.18%208.43.01%208.7.01%209v.48c0%20.31.19.59.49.7l1.16.44c.12.04.23.1.34.16c.47-.14.88-.36%201.16-.63c.2-.2.51-.2.71%200s.2.51%200%20.71c-.25.25-.6.47-.98.65c.05.07.11.13.16.2c.81%201.18%202.08%202.01%203.73%202.55c-1.09-1.62-1.76-3.82-1.76-6.25c0-2.16.53-4.15%201.42-5.7zM3.5%208.13c-.35%200-.63-.28-.63-.63s.28-.63.63-.63s.63.28.63.63s-.28.63-.63.63m8-.13c0-2.29.61-4.36%201.61-5.88c.14-.22.16-.51.03-.74A.74.74%200%200%200%2012.5%201c-.27%200-.54.01-.81.02C10.09%202.39%209%205%209%208s1.09%205.61%202.69%206.98c.27%200%20.53.02.81.02c.27%200%20.51-.15.64-.38s.11-.52-.03-.74c-.99-1.53-1.61-3.6-1.61-5.88m-1.31-6.82c-.74.11-1.45.27-2.12.48C6.82%203.12%206%205.42%206%208.01c0%202.76.92%205.2%202.32%206.64c.6.12%201.24.2%201.92.26C8.87%2013.26%208%2010.78%208%208.01s.85-5.17%202.19-6.82zm4.94%203.84c-.17-.26-.54-.33-.77-.11c-.48.47-1.05.85-1.67%201.12c-.11.64-.19%201.29-.19%201.96s.08%201.33.19%201.96c.62.27%201.19.65%201.67%201.12c.22.22.6.16.77-.11c.55-.86.87-1.88.87-2.98s-.32-2.12-.87-2.98z%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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.42%202.3c-2.11%201-3.64%202.51-4.19%204.26c-.22.69-.68%201.28-1.34%201.57l-.43.18C.18%208.43.01%208.7.01%209v.48c0%20.31.19.59.49.7l1.16.44c.12.04.23.1.34.16c.47-.14.88-.36%201.16-.63c.2-.2.51-.2.71%200s.2.51%200%20.71c-.25.25-.6.47-.98.65c.05.07.11.13.16.2c.81%201.18%202.08%202.01%203.73%202.55c-1.09-1.62-1.76-3.82-1.76-6.25c0-2.16.53-4.15%201.42-5.7zM3.5%208.13c-.35%200-.63-.28-.63-.63s.28-.63.63-.63s.63.28.63.63s-.28.63-.63.63m8-.13c0-2.29.61-4.36%201.61-5.88c.14-.22.16-.51.03-.74A.74.74%200%200%200%2012.5%201c-.27%200-.54.01-.81.02C10.09%202.39%209%205%209%208s1.09%205.61%202.69%206.98c.27%200%20.53.02.81.02c.27%200%20.51-.15.64-.38s.11-.52-.03-.74c-.99-1.53-1.61-3.6-1.61-5.88m-1.31-6.82c-.74.11-1.45.27-2.12.48C6.82%203.12%206%205.42%206%208.01c0%202.76.92%205.2%202.32%206.64c.6.12%201.24.2%201.92.26C8.87%2013.26%208%2010.78%208%208.01s.85-5.17%202.19-6.82zm4.94%203.84c-.17-.26-.54-.33-.77-.11c-.48.47-1.05.85-1.67%201.12c-.11.64-.19%201.29-.19%201.96s.08%201.33.19%201.96c.62.27%201.19.65%201.67%201.12c.22.22.6.16.77-.11c.55-.86.87-1.88.87-2.98s-.32-2.12-.87-2.98z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/codicon/fish2-happy.svg?color=%231a73e8&size=48