hey logo
hey from Simple Icons by Simple Icons Collaborators · Brand · CC0-1.0 Free for personal and commercial use.
- Name
- hey
- Set
- Simple Icons
- Style
- Brand
- Viewbox
- 24×24
- License
- CC0 1.0
Use the hey logo
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M19.57 6.698a5.7 5.7 0 0 0-2.644 1.572c-.84-2.952-2.65-7.42-4.415-8.15a1.28 1.28 0 0 0-1.181.05c-1.104.643-1.823 2.709-1.194 6.624C7.71 2.353 6.863 2.36 6.472 2.353a.96.96 0 0 0-.873.597c-.263.584-.79 2.406.494 6.327C4.547 7.16 4.072 6.89 3.526 6.917a.97.97 0 0 0-.821.557c-.463.873-.41 3.068 1.027 6.34a2.95 2.95 0 0 0-1.773-.73a1.06 1.06 0 0 0-.853.544c-.584 1.073.642 4.083 2.157 6.124C4.49 21.427 6.947 24 10.515 24a8 8 0 0 0 1.489-.141a.654.654 0 0 0-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515c-2.021-2.19-2.908-4.82-2.959-5.622c.424.173 1.644.892 4.018 3.934a.65.65 0 0 0 1.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166c.982 1 3.433 4.671 5.28 7.445a.64.64 0 0 0 .88.199a.64.64 0 0 0 .238-.873C6.312 8.16 6.446 4.952 6.67 3.874c.577.584 2.11 2.618 5.34 9.626a.64.64 0 0 0 .84.327a.64.64 0 0 0 .366-.827c-3.132-8.504-1.772-11.385-1.252-11.712c.674 0 2.567 3.247 3.748 7.502q.107.395.205.77a4 4 0 0 0-.385.924c-.64 2.355-1.283 7.7-.045 9.17a1.2 1.2 0 0 0 1.04.444a1.69 1.69 0 0 0 1.232-.757c1.15-1.675.475-5.879-.443-9.557a4.83 4.83 0 0 1 2.567-1.84a1.28 1.28 0 0 1 1.284.307c.526.59 1.445 2.798-1.34 10.583a.654.654 0 0 0 1.231.436c2.22-6.206 2.568-10.204 1.084-11.886A2.53 2.53 0 0 0 19.57 6.7zm-2.888 11.918a.4.4 0 0 1-.218.186c-.48-.571-.48-3.953.045-6.727c.995 4.795.417 6.2.173 6.54z"/></svg>
React
import type { SVGProps } from "react";
export function SimpleIconsHey(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="M19.57 6.698a5.7 5.7 0 0 0-2.644 1.572c-.84-2.952-2.65-7.42-4.415-8.15a1.28 1.28 0 0 0-1.181.05c-1.104.643-1.823 2.709-1.194 6.624C7.71 2.353 6.863 2.36 6.472 2.353a.96.96 0 0 0-.873.597c-.263.584-.79 2.406.494 6.327C4.547 7.16 4.072 6.89 3.526 6.917a.97.97 0 0 0-.821.557c-.463.873-.41 3.068 1.027 6.34a2.95 2.95 0 0 0-1.773-.73a1.06 1.06 0 0 0-.853.544c-.584 1.073.642 4.083 2.157 6.124C4.49 21.427 6.947 24 10.515 24a8 8 0 0 0 1.489-.141a.654.654 0 0 0-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515c-2.021-2.19-2.908-4.82-2.959-5.622c.424.173 1.644.892 4.018 3.934a.65.65 0 0 0 1.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166c.982 1 3.433 4.671 5.28 7.445a.64.64 0 0 0 .88.199a.64.64 0 0 0 .238-.873C6.312 8.16 6.446 4.952 6.67 3.874c.577.584 2.11 2.618 5.34 9.626a.64.64 0 0 0 .84.327a.64.64 0 0 0 .366-.827c-3.132-8.504-1.772-11.385-1.252-11.712c.674 0 2.567 3.247 3.748 7.502q.107.395.205.77a4 4 0 0 0-.385.924c-.64 2.355-1.283 7.7-.045 9.17a1.2 1.2 0 0 0 1.04.444a1.69 1.69 0 0 0 1.232-.757c1.15-1.675.475-5.879-.443-9.557a4.83 4.83 0 0 1 2.567-1.84a1.28 1.28 0 0 1 1.284.307c.526.59 1.445 2.798-1.34 10.583a.654.654 0 0 0 1.231.436c2.22-6.206 2.568-10.204 1.084-11.886A2.53 2.53 0 0 0 19.57 6.7zm-2.888 11.918a.4.4 0 0 1-.218.186c-.48-.571-.48-3.953.045-6.727c.995 4.795.417 6.2.173 6.54z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M19.57 6.698a5.7 5.7 0 0 0-2.644 1.572c-.84-2.952-2.65-7.42-4.415-8.15a1.28 1.28 0 0 0-1.181.05c-1.104.643-1.823 2.709-1.194 6.624C7.71 2.353 6.863 2.36 6.472 2.353a.96.96 0 0 0-.873.597c-.263.584-.79 2.406.494 6.327C4.547 7.16 4.072 6.89 3.526 6.917a.97.97 0 0 0-.821.557c-.463.873-.41 3.068 1.027 6.34a2.95 2.95 0 0 0-1.773-.73a1.06 1.06 0 0 0-.853.544c-.584 1.073.642 4.083 2.157 6.124C4.49 21.427 6.947 24 10.515 24a8 8 0 0 0 1.489-.141a.654.654 0 0 0-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515c-2.021-2.19-2.908-4.82-2.959-5.622c.424.173 1.644.892 4.018 3.934a.65.65 0 0 0 1.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166c.982 1 3.433 4.671 5.28 7.445a.64.64 0 0 0 .88.199a.64.64 0 0 0 .238-.873C6.312 8.16 6.446 4.952 6.67 3.874c.577.584 2.11 2.618 5.34 9.626a.64.64 0 0 0 .84.327a.64.64 0 0 0 .366-.827c-3.132-8.504-1.772-11.385-1.252-11.712c.674 0 2.567 3.247 3.748 7.502q.107.395.205.77a4 4 0 0 0-.385.924c-.64 2.355-1.283 7.7-.045 9.17a1.2 1.2 0 0 0 1.04.444a1.69 1.69 0 0 0 1.232-.757c1.15-1.675.475-5.879-.443-9.557a4.83 4.83 0 0 1 2.567-1.84a1.28 1.28 0 0 1 1.284.307c.526.59 1.445 2.798-1.34 10.583a.654.654 0 0 0 1.231.436c2.22-6.206 2.568-10.204 1.084-11.886A2.53 2.53 0 0 0 19.57 6.7zm-2.888 11.918a.4.4 0 0 1-.218.186c-.48-.571-.48-3.953.045-6.727c.995 4.795.417 6.2.173 6.54z"/></svg> </template>
CSS
.icon-hey {
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%22M19.57%206.698a5.7%205.7%200%200%200-2.644%201.572c-.84-2.952-2.65-7.42-4.415-8.15a1.28%201.28%200%200%200-1.181.05c-1.104.643-1.823%202.709-1.194%206.624C7.71%202.353%206.863%202.36%206.472%202.353a.96.96%200%200%200-.873.597c-.263.584-.79%202.406.494%206.327C4.547%207.16%204.072%206.89%203.526%206.917a.97.97%200%200%200-.821.557c-.463.873-.41%203.068%201.027%206.34a2.95%202.95%200%200%200-1.773-.73a1.06%201.06%200%200%200-.853.544c-.584%201.073.642%204.083%202.157%206.124C4.49%2021.427%206.947%2024%2010.515%2024a8%208%200%200%200%201.489-.141a.654.654%200%200%200-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515c-2.021-2.19-2.908-4.82-2.959-5.622c.424.173%201.644.892%204.018%203.934a.65.65%200%200%200%201.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166c.982%201%203.433%204.671%205.28%207.445a.64.64%200%200%200%20.88.199a.64.64%200%200%200%20.238-.873C6.312%208.16%206.446%204.952%206.67%203.874c.577.584%202.11%202.618%205.34%209.626a.64.64%200%200%200%20.84.327a.64.64%200%200%200%20.366-.827c-3.132-8.504-1.772-11.385-1.252-11.712c.674%200%202.567%203.247%203.748%207.502q.107.395.205.77a4%204%200%200%200-.385.924c-.64%202.355-1.283%207.7-.045%209.17a1.2%201.2%200%200%200%201.04.444a1.69%201.69%200%200%200%201.232-.757c1.15-1.675.475-5.879-.443-9.557a4.83%204.83%200%200%201%202.567-1.84a1.28%201.28%200%200%201%201.284.307c.526.59%201.445%202.798-1.34%2010.583a.654.654%200%200%200%201.231.436c2.22-6.206%202.568-10.204%201.084-11.886A2.53%202.53%200%200%200%2019.57%206.7zm-2.888%2011.918a.4.4%200%200%201-.218.186c-.48-.571-.48-3.953.045-6.727c.995%204.795.417%206.2.173%206.54z%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%22M19.57%206.698a5.7%205.7%200%200%200-2.644%201.572c-.84-2.952-2.65-7.42-4.415-8.15a1.28%201.28%200%200%200-1.181.05c-1.104.643-1.823%202.709-1.194%206.624C7.71%202.353%206.863%202.36%206.472%202.353a.96.96%200%200%200-.873.597c-.263.584-.79%202.406.494%206.327C4.547%207.16%204.072%206.89%203.526%206.917a.97.97%200%200%200-.821.557c-.463.873-.41%203.068%201.027%206.34a2.95%202.95%200%200%200-1.773-.73a1.06%201.06%200%200%200-.853.544c-.584%201.073.642%204.083%202.157%206.124C4.49%2021.427%206.947%2024%2010.515%2024a8%208%200%200%200%201.489-.141a.654.654%200%200%200-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515c-2.021-2.19-2.908-4.82-2.959-5.622c.424.173%201.644.892%204.018%203.934a.65.65%200%200%200%201.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166c.982%201%203.433%204.671%205.28%207.445a.64.64%200%200%200%20.88.199a.64.64%200%200%200%20.238-.873C6.312%208.16%206.446%204.952%206.67%203.874c.577.584%202.11%202.618%205.34%209.626a.64.64%200%200%200%20.84.327a.64.64%200%200%200%20.366-.827c-3.132-8.504-1.772-11.385-1.252-11.712c.674%200%202.567%203.247%203.748%207.502q.107.395.205.77a4%204%200%200%200-.385.924c-.64%202.355-1.283%207.7-.045%209.17a1.2%201.2%200%200%200%201.04.444a1.69%201.69%200%200%200%201.232-.757c1.15-1.675.475-5.879-.443-9.557a4.83%204.83%200%200%201%202.567-1.84a1.28%201.28%200%200%201%201.284.307c.526.59%201.445%202.798-1.34%2010.583a.654.654%200%200%200%201.231.436c2.22-6.206%202.568-10.204%201.084-11.886A2.53%202.53%200%200%200%2019.57%206.7zm-2.888%2011.918a.4.4%200%200%201-.218.186c-.48-.571-.48-3.953.045-6.727c.995%204.795.417%206.2.173%206.54z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/simple-icons/hey.svg?color=%231a73e8&size=48