notes-filled from Reicon by REICON · Filled · Notes · MIT Free for personal and commercial use.

Name
notes-filled
Set
Reicon
Style
Filled
Category
Notes
Viewbox
24×24
License
MIT

2 other variants in Reicon

The same icon in other sets

All notes icons →

More notes icons from Reicon

Use the notes icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="m20.062 12.647l.517-1.932c.604-2.255.907-3.382.68-4.358a4 4 0 0 0-1.162-2.011c-.731-.685-1.859-.987-4.114-1.591c-2.255-.605-3.383-.907-4.358-.68a4 4 0 0 0-2.011 1.162c-.587.626-.893 1.543-1.348 3.209l-.244.905l-.517 1.932c-.605 2.255-.907 3.382-.68 4.358a4 4 0 0 0 1.162 2.011c.731.685 1.859.987 4.114 1.592c2.032.544 3.149.843 4.064.73q.15-.019.294-.052a4 4 0 0 0 2.011-1.16c.685-.732.987-1.86 1.592-4.115"/><path d="m2.505 14.715l.517 1.932c.604 2.255.907 3.383 1.592 4.114a4 4 0 0 0 2.01 1.16c.976.228 2.104-.074 4.36-.678c2.254-.604 3.382-.906 4.113-1.591q.091-.086.176-.176a9 9 0 0 1-1.014-.15c-.696-.138-1.523-.36-2.501-.622l-.107-.029l-.025-.006c-1.064-.285-1.953-.524-2.663-.78c-.747-.27-1.425-.603-2.002-1.143a5.5 5.5 0 0 1-1.596-2.765c-.18-.769-.128-1.522.012-2.304c.134-.749.374-1.646.662-2.722l.535-1.994l.018-.07c-1.92.517-2.931.823-3.605 1.454a4 4 0 0 0-1.161 2.012c-.228.975.074 2.103.679 4.358"/></g></svg>

React

import type { SVGProps } from "react";

export function ReiconNotesFilled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="m20.062 12.647l.517-1.932c.604-2.255.907-3.382.68-4.358a4 4 0 0 0-1.162-2.011c-.731-.685-1.859-.987-4.114-1.591c-2.255-.605-3.383-.907-4.358-.68a4 4 0 0 0-2.011 1.162c-.587.626-.893 1.543-1.348 3.209l-.244.905l-.517 1.932c-.605 2.255-.907 3.382-.68 4.358a4 4 0 0 0 1.162 2.011c.731.685 1.859.987 4.114 1.592c2.032.544 3.149.843 4.064.73q.15-.019.294-.052a4 4 0 0 0 2.011-1.16c.685-.732.987-1.86 1.592-4.115"/><path d="m2.505 14.715l.517 1.932c.604 2.255.907 3.383 1.592 4.114a4 4 0 0 0 2.01 1.16c.976.228 2.104-.074 4.36-.678c2.254-.604 3.382-.906 4.113-1.591q.091-.086.176-.176a9 9 0 0 1-1.014-.15c-.696-.138-1.523-.36-2.501-.622l-.107-.029l-.025-.006c-1.064-.285-1.953-.524-2.663-.78c-.747-.27-1.425-.603-2.002-1.143a5.5 5.5 0 0 1-1.596-2.765c-.18-.769-.128-1.522.012-2.304c.134-.749.374-1.646.662-2.722l.535-1.994l.018-.07c-1.92.517-2.931.823-3.605 1.454a4 4 0 0 0-1.161 2.012c-.228.975.074 2.103.679 4.358"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="m20.062 12.647l.517-1.932c.604-2.255.907-3.382.68-4.358a4 4 0 0 0-1.162-2.011c-.731-.685-1.859-.987-4.114-1.591c-2.255-.605-3.383-.907-4.358-.68a4 4 0 0 0-2.011 1.162c-.587.626-.893 1.543-1.348 3.209l-.244.905l-.517 1.932c-.605 2.255-.907 3.382-.68 4.358a4 4 0 0 0 1.162 2.011c.731.685 1.859.987 4.114 1.592c2.032.544 3.149.843 4.064.73q.15-.019.294-.052a4 4 0 0 0 2.011-1.16c.685-.732.987-1.86 1.592-4.115"/><path d="m2.505 14.715l.517 1.932c.604 2.255.907 3.383 1.592 4.114a4 4 0 0 0 2.01 1.16c.976.228 2.104-.074 4.36-.678c2.254-.604 3.382-.906 4.113-1.591q.091-.086.176-.176a9 9 0 0 1-1.014-.15c-.696-.138-1.523-.36-2.501-.622l-.107-.029l-.025-.006c-1.064-.285-1.953-.524-2.663-.78c-.747-.27-1.425-.603-2.002-1.143a5.5 5.5 0 0 1-1.596-2.765c-.18-.769-.128-1.522.012-2.304c.134-.749.374-1.646.662-2.722l.535-1.994l.018-.07c-1.92.517-2.931.823-3.605 1.454a4 4 0 0 0-1.161 2.012c-.228.975.074 2.103.679 4.358"/></g></svg>
</template>

CSS

.icon-notes-filled {
  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%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22m20.062%2012.647l.517-1.932c.604-2.255.907-3.382.68-4.358a4%204%200%200%200-1.162-2.011c-.731-.685-1.859-.987-4.114-1.591c-2.255-.605-3.383-.907-4.358-.68a4%204%200%200%200-2.011%201.162c-.587.626-.893%201.543-1.348%203.209l-.244.905l-.517%201.932c-.605%202.255-.907%203.382-.68%204.358a4%204%200%200%200%201.162%202.011c.731.685%201.859.987%204.114%201.592c2.032.544%203.149.843%204.064.73q.15-.019.294-.052a4%204%200%200%200%202.011-1.16c.685-.732.987-1.86%201.592-4.115%22%2F%3E%3Cpath%20d%3D%22m2.505%2014.715l.517%201.932c.604%202.255.907%203.383%201.592%204.114a4%204%200%200%200%202.01%201.16c.976.228%202.104-.074%204.36-.678c2.254-.604%203.382-.906%204.113-1.591q.091-.086.176-.176a9%209%200%200%201-1.014-.15c-.696-.138-1.523-.36-2.501-.622l-.107-.029l-.025-.006c-1.064-.285-1.953-.524-2.663-.78c-.747-.27-1.425-.603-2.002-1.143a5.5%205.5%200%200%201-1.596-2.765c-.18-.769-.128-1.522.012-2.304c.134-.749.374-1.646.662-2.722l.535-1.994l.018-.07c-1.92.517-2.931.823-3.605%201.454a4%204%200%200%200-1.161%202.012c-.228.975.074%202.103.679%204.358%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%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22m20.062%2012.647l.517-1.932c.604-2.255.907-3.382.68-4.358a4%204%200%200%200-1.162-2.011c-.731-.685-1.859-.987-4.114-1.591c-2.255-.605-3.383-.907-4.358-.68a4%204%200%200%200-2.011%201.162c-.587.626-.893%201.543-1.348%203.209l-.244.905l-.517%201.932c-.605%202.255-.907%203.382-.68%204.358a4%204%200%200%200%201.162%202.011c.731.685%201.859.987%204.114%201.592c2.032.544%203.149.843%204.064.73q.15-.019.294-.052a4%204%200%200%200%202.011-1.16c.685-.732.987-1.86%201.592-4.115%22%2F%3E%3Cpath%20d%3D%22m2.505%2014.715l.517%201.932c.604%202.255.907%203.383%201.592%204.114a4%204%200%200%200%202.01%201.16c.976.228%202.104-.074%204.36-.678c2.254-.604%203.382-.906%204.113-1.591q.091-.086.176-.176a9%209%200%200%201-1.014-.15c-.696-.138-1.523-.36-2.501-.622l-.107-.029l-.025-.006c-1.064-.285-1.953-.524-2.663-.78c-.747-.27-1.425-.603-2.002-1.143a5.5%205.5%200%200%201-1.596-2.765c-.18-.769-.128-1.522.012-2.304c.134-.749.374-1.646.662-2.722l.535-1.994l.018-.07c-1.92.517-2.931.823-3.605%201.454a4%204%200%200%200-1.161%202.012c-.228.975.074%202.103.679%204.358%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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