flame icon
flame from Reicon by REICON · Outline · Nature · MIT Free for personal and commercial use.
- Name
- flame
- Set
- Reicon
- Style
- Outline
- Category
- Nature
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
The same icon in other sets
All flame icons →More nature icons from Reicon
Use the flame icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M9.26 3.099c.404-1.011 1.735-1.636 2.767-.85c1.72 1.31 3.877 3.237 5.613 5.44c1.72 2.183 3.11 4.746 3.11 7.311c0 2.293-.71 3.997-1.738 5.218c-1.019 1.209-2.313 1.901-3.43 2.25a1.15 1.15 0 0 1-1.355-.514c-.24-.403-.241-.94.06-1.371c.857-1.232 1.763-3.004 1.763-4.583c0-.784-.338-1.711-.883-2.663a14.3 14.3 0 0 0-1.403-1.99c-.101 1.402-.406 3.165-1.352 4.623a1.162 1.162 0 0 1-1.894.093c-.159-.201-.316-.422-.46-.624l-.025-.036l-.225-.313c-.686.683-1.325 1.5-1.325 2.41c0 .804.401 1.902.876 2.834c.257.503.15 1.061-.16 1.427c-.328.388-.926.588-1.493.26C5.762 20.895 3.25 18.49 3.25 15c0-.947.321-1.926.77-2.883c.453-.963 1.066-1.967 1.71-2.97q.336-.52.675-1.04c1.105-1.693 2.2-3.371 2.855-5.008m1.638.318a.42.42 0 0 0-.245.238c-.716 1.79-1.913 3.622-3.018 5.313q-.33.505-.643.99c-.64.995-1.207 1.929-1.614 2.796c-.41.874-.628 1.62-.628 2.246c0 2.294 1.407 4.076 2.883 5.178c-.355-.84-.65-1.811-.65-2.678c0-1.73 1.3-3.037 2.026-3.725c.47-.445 1.282-.485 1.756.099c.17.211.338.446.49.66l.018.025l.125.175c.67-1.274.856-2.828.903-4.108c.02-.526.346-.943.774-1.117a1.2 1.2 0 0 1 1.354.314l-.557.503l.556-.503c.667.737 1.435 1.712 2.04 2.768c.598 1.043 1.082 2.242 1.082 3.409c0 1.693-.768 3.41-1.544 4.689a5.7 5.7 0 0 0 1.858-1.437c.787-.934 1.386-2.29 1.386-4.252c0-2.057-1.137-4.287-2.789-6.383C14.826 6.54 12.77 4.7 11.118 3.442c-.054-.041-.125-.057-.22-.025" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function ReiconFlame(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" fillRule="evenodd" d="M9.26 3.099c.404-1.011 1.735-1.636 2.767-.85c1.72 1.31 3.877 3.237 5.613 5.44c1.72 2.183 3.11 4.746 3.11 7.311c0 2.293-.71 3.997-1.738 5.218c-1.019 1.209-2.313 1.901-3.43 2.25a1.15 1.15 0 0 1-1.355-.514c-.24-.403-.241-.94.06-1.371c.857-1.232 1.763-3.004 1.763-4.583c0-.784-.338-1.711-.883-2.663a14.3 14.3 0 0 0-1.403-1.99c-.101 1.402-.406 3.165-1.352 4.623a1.162 1.162 0 0 1-1.894.093c-.159-.201-.316-.422-.46-.624l-.025-.036l-.225-.313c-.686.683-1.325 1.5-1.325 2.41c0 .804.401 1.902.876 2.834c.257.503.15 1.061-.16 1.427c-.328.388-.926.588-1.493.26C5.762 20.895 3.25 18.49 3.25 15c0-.947.321-1.926.77-2.883c.453-.963 1.066-1.967 1.71-2.97q.336-.52.675-1.04c1.105-1.693 2.2-3.371 2.855-5.008m1.638.318a.42.42 0 0 0-.245.238c-.716 1.79-1.913 3.622-3.018 5.313q-.33.505-.643.99c-.64.995-1.207 1.929-1.614 2.796c-.41.874-.628 1.62-.628 2.246c0 2.294 1.407 4.076 2.883 5.178c-.355-.84-.65-1.811-.65-2.678c0-1.73 1.3-3.037 2.026-3.725c.47-.445 1.282-.485 1.756.099c.17.211.338.446.49.66l.018.025l.125.175c.67-1.274.856-2.828.903-4.108c.02-.526.346-.943.774-1.117a1.2 1.2 0 0 1 1.354.314l-.557.503l.556-.503c.667.737 1.435 1.712 2.04 2.768c.598 1.043 1.082 2.242 1.082 3.409c0 1.693-.768 3.41-1.544 4.689a5.7 5.7 0 0 0 1.858-1.437c.787-.934 1.386-2.29 1.386-4.252c0-2.057-1.137-4.287-2.789-6.383C14.826 6.54 12.77 4.7 11.118 3.442c-.054-.041-.125-.057-.22-.025" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M9.26 3.099c.404-1.011 1.735-1.636 2.767-.85c1.72 1.31 3.877 3.237 5.613 5.44c1.72 2.183 3.11 4.746 3.11 7.311c0 2.293-.71 3.997-1.738 5.218c-1.019 1.209-2.313 1.901-3.43 2.25a1.15 1.15 0 0 1-1.355-.514c-.24-.403-.241-.94.06-1.371c.857-1.232 1.763-3.004 1.763-4.583c0-.784-.338-1.711-.883-2.663a14.3 14.3 0 0 0-1.403-1.99c-.101 1.402-.406 3.165-1.352 4.623a1.162 1.162 0 0 1-1.894.093c-.159-.201-.316-.422-.46-.624l-.025-.036l-.225-.313c-.686.683-1.325 1.5-1.325 2.41c0 .804.401 1.902.876 2.834c.257.503.15 1.061-.16 1.427c-.328.388-.926.588-1.493.26C5.762 20.895 3.25 18.49 3.25 15c0-.947.321-1.926.77-2.883c.453-.963 1.066-1.967 1.71-2.97q.336-.52.675-1.04c1.105-1.693 2.2-3.371 2.855-5.008m1.638.318a.42.42 0 0 0-.245.238c-.716 1.79-1.913 3.622-3.018 5.313q-.33.505-.643.99c-.64.995-1.207 1.929-1.614 2.796c-.41.874-.628 1.62-.628 2.246c0 2.294 1.407 4.076 2.883 5.178c-.355-.84-.65-1.811-.65-2.678c0-1.73 1.3-3.037 2.026-3.725c.47-.445 1.282-.485 1.756.099c.17.211.338.446.49.66l.018.025l.125.175c.67-1.274.856-2.828.903-4.108c.02-.526.346-.943.774-1.117a1.2 1.2 0 0 1 1.354.314l-.557.503l.556-.503c.667.737 1.435 1.712 2.04 2.768c.598 1.043 1.082 2.242 1.082 3.409c0 1.693-.768 3.41-1.544 4.689a5.7 5.7 0 0 0 1.858-1.437c.787-.934 1.386-2.29 1.386-4.252c0-2.057-1.137-4.287-2.789-6.383C14.826 6.54 12.77 4.7 11.118 3.442c-.054-.041-.125-.057-.22-.025" clip-rule="evenodd"/></svg> </template>
CSS
.icon-flame {
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%20fill-rule%3D%22evenodd%22%20d%3D%22M9.26%203.099c.404-1.011%201.735-1.636%202.767-.85c1.72%201.31%203.877%203.237%205.613%205.44c1.72%202.183%203.11%204.746%203.11%207.311c0%202.293-.71%203.997-1.738%205.218c-1.019%201.209-2.313%201.901-3.43%202.25a1.15%201.15%200%200%201-1.355-.514c-.24-.403-.241-.94.06-1.371c.857-1.232%201.763-3.004%201.763-4.583c0-.784-.338-1.711-.883-2.663a14.3%2014.3%200%200%200-1.403-1.99c-.101%201.402-.406%203.165-1.352%204.623a1.162%201.162%200%200%201-1.894.093c-.159-.201-.316-.422-.46-.624l-.025-.036l-.225-.313c-.686.683-1.325%201.5-1.325%202.41c0%20.804.401%201.902.876%202.834c.257.503.15%201.061-.16%201.427c-.328.388-.926.588-1.493.26C5.762%2020.895%203.25%2018.49%203.25%2015c0-.947.321-1.926.77-2.883c.453-.963%201.066-1.967%201.71-2.97q.336-.52.675-1.04c1.105-1.693%202.2-3.371%202.855-5.008m1.638.318a.42.42%200%200%200-.245.238c-.716%201.79-1.913%203.622-3.018%205.313q-.33.505-.643.99c-.64.995-1.207%201.929-1.614%202.796c-.41.874-.628%201.62-.628%202.246c0%202.294%201.407%204.076%202.883%205.178c-.355-.84-.65-1.811-.65-2.678c0-1.73%201.3-3.037%202.026-3.725c.47-.445%201.282-.485%201.756.099c.17.211.338.446.49.66l.018.025l.125.175c.67-1.274.856-2.828.903-4.108c.02-.526.346-.943.774-1.117a1.2%201.2%200%200%201%201.354.314l-.557.503l.556-.503c.667.737%201.435%201.712%202.04%202.768c.598%201.043%201.082%202.242%201.082%203.409c0%201.693-.768%203.41-1.544%204.689a5.7%205.7%200%200%200%201.858-1.437c.787-.934%201.386-2.29%201.386-4.252c0-2.057-1.137-4.287-2.789-6.383C14.826%206.54%2012.77%204.7%2011.118%203.442c-.054-.041-.125-.057-.22-.025%22%20clip-rule%3D%22evenodd%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%20fill-rule%3D%22evenodd%22%20d%3D%22M9.26%203.099c.404-1.011%201.735-1.636%202.767-.85c1.72%201.31%203.877%203.237%205.613%205.44c1.72%202.183%203.11%204.746%203.11%207.311c0%202.293-.71%203.997-1.738%205.218c-1.019%201.209-2.313%201.901-3.43%202.25a1.15%201.15%200%200%201-1.355-.514c-.24-.403-.241-.94.06-1.371c.857-1.232%201.763-3.004%201.763-4.583c0-.784-.338-1.711-.883-2.663a14.3%2014.3%200%200%200-1.403-1.99c-.101%201.402-.406%203.165-1.352%204.623a1.162%201.162%200%200%201-1.894.093c-.159-.201-.316-.422-.46-.624l-.025-.036l-.225-.313c-.686.683-1.325%201.5-1.325%202.41c0%20.804.401%201.902.876%202.834c.257.503.15%201.061-.16%201.427c-.328.388-.926.588-1.493.26C5.762%2020.895%203.25%2018.49%203.25%2015c0-.947.321-1.926.77-2.883c.453-.963%201.066-1.967%201.71-2.97q.336-.52.675-1.04c1.105-1.693%202.2-3.371%202.855-5.008m1.638.318a.42.42%200%200%200-.245.238c-.716%201.79-1.913%203.622-3.018%205.313q-.33.505-.643.99c-.64.995-1.207%201.929-1.614%202.796c-.41.874-.628%201.62-.628%202.246c0%202.294%201.407%204.076%202.883%205.178c-.355-.84-.65-1.811-.65-2.678c0-1.73%201.3-3.037%202.026-3.725c.47-.445%201.282-.485%201.756.099c.17.211.338.446.49.66l.018.025l.125.175c.67-1.274.856-2.828.903-4.108c.02-.526.346-.943.774-1.117a1.2%201.2%200%200%201%201.354.314l-.557.503l.556-.503c.667.737%201.435%201.712%202.04%202.768c.598%201.043%201.082%202.242%201.082%203.409c0%201.693-.768%203.41-1.544%204.689a5.7%205.7%200%200%200%201.858-1.437c.787-.934%201.386-2.29%201.386-4.252c0-2.057-1.137-4.287-2.789-6.383C14.826%206.54%2012.77%204.7%2011.118%203.442c-.054-.041-.125-.057-.22-.025%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/flame.svg?color=%231a73e8&size=48