not-ok-outline from Health Icons by Resolve to Save Lives · Outline · Emotions · MIT Free for personal and commercial use.

Name
not-ok-outline
Set
Health Icons
Style
Outline
Category
Emotions
Viewbox
48×48
License
MIT
Aliases
not-ok2x-outline

3 other variants in Health Icons

More emotions icons from Health Icons

Use the not ok icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M14.807 23.233c-.683-.438-1.183-1.145-1.064-1.883a.5.5 0 0 1 .668-.389c1.818.675 3.846.256 5.642-1.448a.5.5 0 0 1 .818.203c.231.689.024 1.618-.48 2.382a3.8 3.8 0 0 1-2.654 1.665c-1.198.177-2.216-.073-2.93-.53m17.947 0c.683-.438 1.184-1.145 1.065-1.883a.5.5 0 0 0-.668-.389c-1.818.675-3.846.256-5.642-1.448a.5.5 0 0 0-.818.203c-.232.689-.024 1.618.48 2.382a3.8 3.8 0 0 0 2.653 1.665c1.199.177 2.216-.073 2.93-.53"/><path fill-rule="evenodd" d="M17.396 31.17c-.186.285-.334.65-.431 1.006a3.7 3.7 0 0 0-.136 1.214c.03.4.172.99.699 1.377c.55.403 1.212.363 1.772.187l.008-.002l.008-.003c2.437-.81 3.598-1.134 4.713-1.127c1.12.006 2.254.343 4.648 1.125c.507.177 1.134.215 1.656-.195c.47-.368.602-.912.64-1.268a3.6 3.6 0 0 0-.075-1.123a3.5 3.5 0 0 0-.357-.973a4 4 0 0 0-.278-.403l-.018-.023C28.94 29.139 26.538 28 23.892 28c-2.742 0-5.228 1.225-6.496 3.17m1.436 2.132l.002.006l-.003-.01zm.062-.598q-.045.162-.06.298c2.288-.76 3.736-1.189 5.207-1.18c1.421.008 2.807.426 4.93 1.117a2 2 0 0 0-.028-.153a1.6 1.6 0 0 0-.137-.403c-.019-.033-.029-.046-.053-.078a4 4 0 0 1-.133-.178C27.75 30.913 26.005 30 23.892 30c-2.195 0-3.987.983-4.821 2.263a1.8 1.8 0 0 0-.177.44m10.08.628l-.002.008l.004-.01z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24S14.059 6 24 6s18 8.059 18 18m-2 0c0 8.837-7.163 16-16 16S8 32.837 8 24S15.163 8 24 8s16 7.163 16 16" clip-rule="evenodd"/></g></svg>

React

import type { SVGProps } from "react";

export function HealthiconsNotOkOutline(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M14.807 23.233c-.683-.438-1.183-1.145-1.064-1.883a.5.5 0 0 1 .668-.389c1.818.675 3.846.256 5.642-1.448a.5.5 0 0 1 .818.203c.231.689.024 1.618-.48 2.382a3.8 3.8 0 0 1-2.654 1.665c-1.198.177-2.216-.073-2.93-.53m17.947 0c.683-.438 1.184-1.145 1.065-1.883a.5.5 0 0 0-.668-.389c-1.818.675-3.846.256-5.642-1.448a.5.5 0 0 0-.818.203c-.232.689-.024 1.618.48 2.382a3.8 3.8 0 0 0 2.653 1.665c1.199.177 2.216-.073 2.93-.53"/><path fillRule="evenodd" d="M17.396 31.17c-.186.285-.334.65-.431 1.006a3.7 3.7 0 0 0-.136 1.214c.03.4.172.99.699 1.377c.55.403 1.212.363 1.772.187l.008-.002l.008-.003c2.437-.81 3.598-1.134 4.713-1.127c1.12.006 2.254.343 4.648 1.125c.507.177 1.134.215 1.656-.195c.47-.368.602-.912.64-1.268a3.6 3.6 0 0 0-.075-1.123a3.5 3.5 0 0 0-.357-.973a4 4 0 0 0-.278-.403l-.018-.023C28.94 29.139 26.538 28 23.892 28c-2.742 0-5.228 1.225-6.496 3.17m1.436 2.132l.002.006l-.003-.01zm.062-.598q-.045.162-.06.298c2.288-.76 3.736-1.189 5.207-1.18c1.421.008 2.807.426 4.93 1.117a2 2 0 0 0-.028-.153a1.6 1.6 0 0 0-.137-.403c-.019-.033-.029-.046-.053-.078a4 4 0 0 1-.133-.178C27.75 30.913 26.005 30 23.892 30c-2.195 0-3.987.983-4.821 2.263a1.8 1.8 0 0 0-.177.44m10.08.628l-.002.008l.004-.01z" clipRule="evenodd"/><path fillRule="evenodd" d="M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24S14.059 6 24 6s18 8.059 18 18m-2 0c0 8.837-7.163 16-16 16S8 32.837 8 24S15.163 8 24 8s16 7.163 16 16" clipRule="evenodd"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M14.807 23.233c-.683-.438-1.183-1.145-1.064-1.883a.5.5 0 0 1 .668-.389c1.818.675 3.846.256 5.642-1.448a.5.5 0 0 1 .818.203c.231.689.024 1.618-.48 2.382a3.8 3.8 0 0 1-2.654 1.665c-1.198.177-2.216-.073-2.93-.53m17.947 0c.683-.438 1.184-1.145 1.065-1.883a.5.5 0 0 0-.668-.389c-1.818.675-3.846.256-5.642-1.448a.5.5 0 0 0-.818.203c-.232.689-.024 1.618.48 2.382a3.8 3.8 0 0 0 2.653 1.665c1.199.177 2.216-.073 2.93-.53"/><path fill-rule="evenodd" d="M17.396 31.17c-.186.285-.334.65-.431 1.006a3.7 3.7 0 0 0-.136 1.214c.03.4.172.99.699 1.377c.55.403 1.212.363 1.772.187l.008-.002l.008-.003c2.437-.81 3.598-1.134 4.713-1.127c1.12.006 2.254.343 4.648 1.125c.507.177 1.134.215 1.656-.195c.47-.368.602-.912.64-1.268a3.6 3.6 0 0 0-.075-1.123a3.5 3.5 0 0 0-.357-.973a4 4 0 0 0-.278-.403l-.018-.023C28.94 29.139 26.538 28 23.892 28c-2.742 0-5.228 1.225-6.496 3.17m1.436 2.132l.002.006l-.003-.01zm.062-.598q-.045.162-.06.298c2.288-.76 3.736-1.189 5.207-1.18c1.421.008 2.807.426 4.93 1.117a2 2 0 0 0-.028-.153a1.6 1.6 0 0 0-.137-.403c-.019-.033-.029-.046-.053-.078a4 4 0 0 1-.133-.178C27.75 30.913 26.005 30 23.892 30c-2.195 0-3.987.983-4.821 2.263a1.8 1.8 0 0 0-.177.44m10.08.628l-.002.008l.004-.01z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24S14.059 6 24 6s18 8.059 18 18m-2 0c0 8.837-7.163 16-16 16S8 32.837 8 24S15.163 8 24 8s16 7.163 16 16" clip-rule="evenodd"/></g></svg>
</template>

CSS

.icon-not-ok-outline {
  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%2048%2048%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M14.807%2023.233c-.683-.438-1.183-1.145-1.064-1.883a.5.5%200%200%201%20.668-.389c1.818.675%203.846.256%205.642-1.448a.5.5%200%200%201%20.818.203c.231.689.024%201.618-.48%202.382a3.8%203.8%200%200%201-2.654%201.665c-1.198.177-2.216-.073-2.93-.53m17.947%200c.683-.438%201.184-1.145%201.065-1.883a.5.5%200%200%200-.668-.389c-1.818.675-3.846.256-5.642-1.448a.5.5%200%200%200-.818.203c-.232.689-.024%201.618.48%202.382a3.8%203.8%200%200%200%202.653%201.665c1.199.177%202.216-.073%202.93-.53%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M17.396%2031.17c-.186.285-.334.65-.431%201.006a3.7%203.7%200%200%200-.136%201.214c.03.4.172.99.699%201.377c.55.403%201.212.363%201.772.187l.008-.002l.008-.003c2.437-.81%203.598-1.134%204.713-1.127c1.12.006%202.254.343%204.648%201.125c.507.177%201.134.215%201.656-.195c.47-.368.602-.912.64-1.268a3.6%203.6%200%200%200-.075-1.123a3.5%203.5%200%200%200-.357-.973a4%204%200%200%200-.278-.403l-.018-.023C28.94%2029.139%2026.538%2028%2023.892%2028c-2.742%200-5.228%201.225-6.496%203.17m1.436%202.132l.002.006l-.003-.01zm.062-.598q-.045.162-.06.298c2.288-.76%203.736-1.189%205.207-1.18c1.421.008%202.807.426%204.93%201.117a2%202%200%200%200-.028-.153a1.6%201.6%200%200%200-.137-.403c-.019-.033-.029-.046-.053-.078a4%204%200%200%201-.133-.178C27.75%2030.913%2026.005%2030%2023.892%2030c-2.195%200-3.987.983-4.821%202.263a1.8%201.8%200%200%200-.177.44m10.08.628l-.002.008l.004-.01z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M42%2024c0%209.941-8.059%2018-18%2018S6%2033.941%206%2024S14.059%206%2024%206s18%208.059%2018%2018m-2%200c0%208.837-7.163%2016-16%2016S8%2032.837%208%2024S15.163%208%2024%208s16%207.163%2016%2016%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%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%2048%2048%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M14.807%2023.233c-.683-.438-1.183-1.145-1.064-1.883a.5.5%200%200%201%20.668-.389c1.818.675%203.846.256%205.642-1.448a.5.5%200%200%201%20.818.203c.231.689.024%201.618-.48%202.382a3.8%203.8%200%200%201-2.654%201.665c-1.198.177-2.216-.073-2.93-.53m17.947%200c.683-.438%201.184-1.145%201.065-1.883a.5.5%200%200%200-.668-.389c-1.818.675-3.846.256-5.642-1.448a.5.5%200%200%200-.818.203c-.232.689-.024%201.618.48%202.382a3.8%203.8%200%200%200%202.653%201.665c1.199.177%202.216-.073%202.93-.53%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M17.396%2031.17c-.186.285-.334.65-.431%201.006a3.7%203.7%200%200%200-.136%201.214c.03.4.172.99.699%201.377c.55.403%201.212.363%201.772.187l.008-.002l.008-.003c2.437-.81%203.598-1.134%204.713-1.127c1.12.006%202.254.343%204.648%201.125c.507.177%201.134.215%201.656-.195c.47-.368.602-.912.64-1.268a3.6%203.6%200%200%200-.075-1.123a3.5%203.5%200%200%200-.357-.973a4%204%200%200%200-.278-.403l-.018-.023C28.94%2029.139%2026.538%2028%2023.892%2028c-2.742%200-5.228%201.225-6.496%203.17m1.436%202.132l.002.006l-.003-.01zm.062-.598q-.045.162-.06.298c2.288-.76%203.736-1.189%205.207-1.18c1.421.008%202.807.426%204.93%201.117a2%202%200%200%200-.028-.153a1.6%201.6%200%200%200-.137-.403c-.019-.033-.029-.046-.053-.078a4%204%200%200%201-.133-.178C27.75%2030.913%2026.005%2030%2023.892%2030c-2.195%200-3.987.983-4.821%202.263a1.8%201.8%200%200%200-.177.44m10.08.628l-.002.008l.004-.01z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M42%2024c0%209.941-8.059%2018-18%2018S6%2033.941%206%2024S14.059%206%2024%206s18%208.059%2018%2018m-2%200c0%208.837-7.163%2016-16%2016S8%2032.837%208%2024S15.163%208%2024%208s16%207.163%2016%2016%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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