currency sign icon
currency-sign from Material Design Icons by Pictogrammers · Filled · Banking · Apache-2.0 Free for personal and commercial use.
- Name
- currency-sign
- Set
- Material Design Icons
- Style
- Filled
- Category
- Banking
- Viewbox
- 24×24
- License
- Apache 2.0
- Aliases
- currency-scarab
More banking icons from Material Design Icons
Use the currency sign icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4.41 3L3 4.41L5.69 7.1A7.92 7.92 0 0 0 4 12c0 1.85.63 3.55 1.69 4.9L3 19.59L4.41 21l2.69-2.69A7.92 7.92 0 0 0 12 20c1.85 0 3.55-.63 4.9-1.69L19.59 21L21 19.59l-2.69-2.69A7.92 7.92 0 0 0 20 12c0-1.85-.63-3.55-1.69-4.9L21 4.41L19.59 3L16.9 5.69A7.92 7.92 0 0 0 12 4c-1.85 0-3.55.63-4.9 1.69zM12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6"/></svg>
React
import type { SVGProps } from "react";
export function MdiCurrencySign(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="M4.41 3L3 4.41L5.69 7.1A7.92 7.92 0 0 0 4 12c0 1.85.63 3.55 1.69 4.9L3 19.59L4.41 21l2.69-2.69A7.92 7.92 0 0 0 12 20c1.85 0 3.55-.63 4.9-1.69L19.59 21L21 19.59l-2.69-2.69A7.92 7.92 0 0 0 20 12c0-1.85-.63-3.55-1.69-4.9L21 4.41L19.59 3L16.9 5.69A7.92 7.92 0 0 0 12 4c-1.85 0-3.55.63-4.9 1.69zM12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4.41 3L3 4.41L5.69 7.1A7.92 7.92 0 0 0 4 12c0 1.85.63 3.55 1.69 4.9L3 19.59L4.41 21l2.69-2.69A7.92 7.92 0 0 0 12 20c1.85 0 3.55-.63 4.9-1.69L19.59 21L21 19.59l-2.69-2.69A7.92 7.92 0 0 0 20 12c0-1.85-.63-3.55-1.69-4.9L21 4.41L19.59 3L16.9 5.69A7.92 7.92 0 0 0 12 4c-1.85 0-3.55.63-4.9 1.69zM12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6"/></svg> </template>
CSS
.icon-currency-sign {
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%22M4.41%203L3%204.41L5.69%207.1A7.92%207.92%200%200%200%204%2012c0%201.85.63%203.55%201.69%204.9L3%2019.59L4.41%2021l2.69-2.69A7.92%207.92%200%200%200%2012%2020c1.85%200%203.55-.63%204.9-1.69L19.59%2021L21%2019.59l-2.69-2.69A7.92%207.92%200%200%200%2020%2012c0-1.85-.63-3.55-1.69-4.9L21%204.41L19.59%203L16.9%205.69A7.92%207.92%200%200%200%2012%204c-1.85%200-3.55.63-4.9%201.69zM12%206c3.31%200%206%202.69%206%206s-2.69%206-6%206s-6-2.69-6-6s2.69-6%206-6%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%22M4.41%203L3%204.41L5.69%207.1A7.92%207.92%200%200%200%204%2012c0%201.85.63%203.55%201.69%204.9L3%2019.59L4.41%2021l2.69-2.69A7.92%207.92%200%200%200%2012%2020c1.85%200%203.55-.63%204.9-1.69L19.59%2021L21%2019.59l-2.69-2.69A7.92%207.92%200%200%200%2020%2012c0-1.85-.63-3.55-1.69-4.9L21%204.41L19.59%203L16.9%205.69A7.92%207.92%200%200%200%2012%204c-1.85%200-3.55.63-4.9%201.69zM12%206c3.31%200%206%202.69%206%206s-2.69%206-6%206s-6-2.69-6-6s2.69-6%206-6%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mdi/currency-sign.svg?color=%231a73e8&size=48