ok button emoji

ok-button from Noto Emoji by Google Inc · Default · Symbols · Apache-2.0 Free for personal and commercial use.

Name
ok-button
Set
Noto Emoji
Style
Default
Category
Symbols
Viewbox
128×128
License
Apache 2.0

The same emoji in other sets

More symbols icons from Noto Emoji

Use the ok button emoji

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 128 128"><path fill="#427687" d="M116 4H12c-4.42 0-8 3.58-8 8v104c0 4.42 3.58 8 8 8h104c4.42 0 8-3.58 8-8V12c0-4.42-3.58-8-8-8"/><path fill="#8cafbf" d="M109.7 4H11.5A7.555 7.555 0 0 0 4 11.5v97.9c-.01 4.14 3.34 7.49 7.48 7.5h98.12c4.14.01 7.49-3.34 7.5-7.48V11.5c.09-4.05-3.13-7.41-7.18-7.5z"/><path fill="#b4e1ed" d="M39.7 12.9c0-2.3-1.6-3-10.8-2.7c-7.7.3-11.5 1.2-13.8 4s-2.9 8.5-3 15.3c0 4.8 0 9.3 2.5 9.3c3.4 0 3.4-7.9 6.2-12.3c5.4-8.7 18.9-10.6 18.9-13.6" opacity=".5"/><path fill="#fafafa" d="M23.99 89.2c-4.03-2.53-7.19-5.99-9.5-10.39s-3.46-9.23-3.46-14.49s1.15-10.09 3.46-14.49s5.47-7.86 9.5-10.39c4.02-2.53 8.51-3.8 13.45-3.8s9.43 1.27 13.45 3.8c4.03 2.53 7.19 5.99 9.5 10.39s3.46 9.23 3.46 14.49s-1.15 10.09-3.46 14.49s-5.47 7.86-9.5 10.39c-4.02 2.53-8.51 3.79-13.45 3.79s-9.42-1.26-13.45-3.79m22-8.4c2.59-1.58 4.63-3.81 6.11-6.67q2.22-4.29 2.22-9.81t-2.22-9.81c-1.48-2.86-3.52-5.09-6.11-6.67s-5.44-2.38-8.54-2.38s-5.94.79-8.51 2.38c-2.57 1.58-4.59 3.81-6.07 6.67q-2.22 4.29-2.22 9.81t2.22 9.81c1.48 2.86 3.51 5.09 6.07 6.67c2.57 1.58 5.4 2.38 8.51 2.38s5.95-.79 8.54-2.38m25.14-43.93h9.53v23.54h.57l18.5-23.54h11.51v.61l-18.29 22.7l20.2 30.97v.61H101.5L86.38 68.38l-5.72 7.28v16.1h-9.53z"/></svg>

React

import type { SVGProps } from "react";

export function NotoOkButton(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 128 128"><path fill="#427687" d="M116 4H12c-4.42 0-8 3.58-8 8v104c0 4.42 3.58 8 8 8h104c4.42 0 8-3.58 8-8V12c0-4.42-3.58-8-8-8"/><path fill="#8cafbf" d="M109.7 4H11.5A7.555 7.555 0 0 0 4 11.5v97.9c-.01 4.14 3.34 7.49 7.48 7.5h98.12c4.14.01 7.49-3.34 7.5-7.48V11.5c.09-4.05-3.13-7.41-7.18-7.5z"/><path fill="#b4e1ed" d="M39.7 12.9c0-2.3-1.6-3-10.8-2.7c-7.7.3-11.5 1.2-13.8 4s-2.9 8.5-3 15.3c0 4.8 0 9.3 2.5 9.3c3.4 0 3.4-7.9 6.2-12.3c5.4-8.7 18.9-10.6 18.9-13.6" opacity=".5"/><path fill="#fafafa" d="M23.99 89.2c-4.03-2.53-7.19-5.99-9.5-10.39s-3.46-9.23-3.46-14.49s1.15-10.09 3.46-14.49s5.47-7.86 9.5-10.39c4.02-2.53 8.51-3.8 13.45-3.8s9.43 1.27 13.45 3.8c4.03 2.53 7.19 5.99 9.5 10.39s3.46 9.23 3.46 14.49s-1.15 10.09-3.46 14.49s-5.47 7.86-9.5 10.39c-4.02 2.53-8.51 3.79-13.45 3.79s-9.42-1.26-13.45-3.79m22-8.4c2.59-1.58 4.63-3.81 6.11-6.67q2.22-4.29 2.22-9.81t-2.22-9.81c-1.48-2.86-3.52-5.09-6.11-6.67s-5.44-2.38-8.54-2.38s-5.94.79-8.51 2.38c-2.57 1.58-4.59 3.81-6.07 6.67q-2.22 4.29-2.22 9.81t2.22 9.81c1.48 2.86 3.51 5.09 6.07 6.67c2.57 1.58 5.4 2.38 8.51 2.38s5.95-.79 8.54-2.38m25.14-43.93h9.53v23.54h.57l18.5-23.54h11.51v.61l-18.29 22.7l20.2 30.97v.61H101.5L86.38 68.38l-5.72 7.28v16.1h-9.53z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 128 128"><path fill="#427687" d="M116 4H12c-4.42 0-8 3.58-8 8v104c0 4.42 3.58 8 8 8h104c4.42 0 8-3.58 8-8V12c0-4.42-3.58-8-8-8"/><path fill="#8cafbf" d="M109.7 4H11.5A7.555 7.555 0 0 0 4 11.5v97.9c-.01 4.14 3.34 7.49 7.48 7.5h98.12c4.14.01 7.49-3.34 7.5-7.48V11.5c.09-4.05-3.13-7.41-7.18-7.5z"/><path fill="#b4e1ed" d="M39.7 12.9c0-2.3-1.6-3-10.8-2.7c-7.7.3-11.5 1.2-13.8 4s-2.9 8.5-3 15.3c0 4.8 0 9.3 2.5 9.3c3.4 0 3.4-7.9 6.2-12.3c5.4-8.7 18.9-10.6 18.9-13.6" opacity=".5"/><path fill="#fafafa" d="M23.99 89.2c-4.03-2.53-7.19-5.99-9.5-10.39s-3.46-9.23-3.46-14.49s1.15-10.09 3.46-14.49s5.47-7.86 9.5-10.39c4.02-2.53 8.51-3.8 13.45-3.8s9.43 1.27 13.45 3.8c4.03 2.53 7.19 5.99 9.5 10.39s3.46 9.23 3.46 14.49s-1.15 10.09-3.46 14.49s-5.47 7.86-9.5 10.39c-4.02 2.53-8.51 3.79-13.45 3.79s-9.42-1.26-13.45-3.79m22-8.4c2.59-1.58 4.63-3.81 6.11-6.67q2.22-4.29 2.22-9.81t-2.22-9.81c-1.48-2.86-3.52-5.09-6.11-6.67s-5.44-2.38-8.54-2.38s-5.94.79-8.51 2.38c-2.57 1.58-4.59 3.81-6.07 6.67q-2.22 4.29-2.22 9.81t2.22 9.81c1.48 2.86 3.51 5.09 6.07 6.67c2.57 1.58 5.4 2.38 8.51 2.38s5.95-.79 8.54-2.38m25.14-43.93h9.53v23.54h.57l18.5-23.54h11.51v.61l-18.29 22.7l20.2 30.97v.61H101.5L86.38 68.38l-5.72 7.28v16.1h-9.53z"/></svg>
</template>

CSS

.icon-ok-button {
  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%20128%20128%22%3E%3Cpath%20fill%3D%22%23427687%22%20d%3D%22M116%204H12c-4.42%200-8%203.58-8%208v104c0%204.42%203.58%208%208%208h104c4.42%200%208-3.58%208-8V12c0-4.42-3.58-8-8-8%22%2F%3E%3Cpath%20fill%3D%22%238cafbf%22%20d%3D%22M109.7%204H11.5A7.555%207.555%200%200%200%204%2011.5v97.9c-.01%204.14%203.34%207.49%207.48%207.5h98.12c4.14.01%207.49-3.34%207.5-7.48V11.5c.09-4.05-3.13-7.41-7.18-7.5z%22%2F%3E%3Cpath%20fill%3D%22%23b4e1ed%22%20d%3D%22M39.7%2012.9c0-2.3-1.6-3-10.8-2.7c-7.7.3-11.5%201.2-13.8%204s-2.9%208.5-3%2015.3c0%204.8%200%209.3%202.5%209.3c3.4%200%203.4-7.9%206.2-12.3c5.4-8.7%2018.9-10.6%2018.9-13.6%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20fill%3D%22%23fafafa%22%20d%3D%22M23.99%2089.2c-4.03-2.53-7.19-5.99-9.5-10.39s-3.46-9.23-3.46-14.49s1.15-10.09%203.46-14.49s5.47-7.86%209.5-10.39c4.02-2.53%208.51-3.8%2013.45-3.8s9.43%201.27%2013.45%203.8c4.03%202.53%207.19%205.99%209.5%2010.39s3.46%209.23%203.46%2014.49s-1.15%2010.09-3.46%2014.49s-5.47%207.86-9.5%2010.39c-4.02%202.53-8.51%203.79-13.45%203.79s-9.42-1.26-13.45-3.79m22-8.4c2.59-1.58%204.63-3.81%206.11-6.67q2.22-4.29%202.22-9.81t-2.22-9.81c-1.48-2.86-3.52-5.09-6.11-6.67s-5.44-2.38-8.54-2.38s-5.94.79-8.51%202.38c-2.57%201.58-4.59%203.81-6.07%206.67q-2.22%204.29-2.22%209.81t2.22%209.81c1.48%202.86%203.51%205.09%206.07%206.67c2.57%201.58%205.4%202.38%208.51%202.38s5.95-.79%208.54-2.38m25.14-43.93h9.53v23.54h.57l18.5-23.54h11.51v.61l-18.29%2022.7l20.2%2030.97v.61H101.5L86.38%2068.38l-5.72%207.28v16.1h-9.53z%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%20128%20128%22%3E%3Cpath%20fill%3D%22%23427687%22%20d%3D%22M116%204H12c-4.42%200-8%203.58-8%208v104c0%204.42%203.58%208%208%208h104c4.42%200%208-3.58%208-8V12c0-4.42-3.58-8-8-8%22%2F%3E%3Cpath%20fill%3D%22%238cafbf%22%20d%3D%22M109.7%204H11.5A7.555%207.555%200%200%200%204%2011.5v97.9c-.01%204.14%203.34%207.49%207.48%207.5h98.12c4.14.01%207.49-3.34%207.5-7.48V11.5c.09-4.05-3.13-7.41-7.18-7.5z%22%2F%3E%3Cpath%20fill%3D%22%23b4e1ed%22%20d%3D%22M39.7%2012.9c0-2.3-1.6-3-10.8-2.7c-7.7.3-11.5%201.2-13.8%204s-2.9%208.5-3%2015.3c0%204.8%200%209.3%202.5%209.3c3.4%200%203.4-7.9%206.2-12.3c5.4-8.7%2018.9-10.6%2018.9-13.6%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20fill%3D%22%23fafafa%22%20d%3D%22M23.99%2089.2c-4.03-2.53-7.19-5.99-9.5-10.39s-3.46-9.23-3.46-14.49s1.15-10.09%203.46-14.49s5.47-7.86%209.5-10.39c4.02-2.53%208.51-3.8%2013.45-3.8s9.43%201.27%2013.45%203.8c4.03%202.53%207.19%205.99%209.5%2010.39s3.46%209.23%203.46%2014.49s-1.15%2010.09-3.46%2014.49s-5.47%207.86-9.5%2010.39c-4.02%202.53-8.51%203.79-13.45%203.79s-9.42-1.26-13.45-3.79m22-8.4c2.59-1.58%204.63-3.81%206.11-6.67q2.22-4.29%202.22-9.81t-2.22-9.81c-1.48-2.86-3.52-5.09-6.11-6.67s-5.44-2.38-8.54-2.38s-5.94.79-8.51%202.38c-2.57%201.58-4.59%203.81-6.07%206.67q-2.22%204.29-2.22%209.81t2.22%209.81c1.48%202.86%203.51%205.09%206.07%206.67c2.57%201.58%205.4%202.38%208.51%202.38s5.95-.79%208.54-2.38m25.14-43.93h9.53v23.54h.57l18.5-23.54h11.51v.61l-18.29%2022.7l20.2%2030.97v.61H101.5L86.38%2068.38l-5.72%207.28v16.1h-9.53z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/noto/ok-button.svg?color=%231a73e8&size=48