function icon
function-rounded from Material Symbols by Google · Rounded · Text · Apache-2.0 Free for personal and commercial use.
- Name
- function-rounded
- Set
- Material Symbols
- Style
- Rounded
- Category
- Text
- Viewbox
- 24×24
- License
- Apache 2.0
- Aliases
- function-outline-rounded
1 other variant in Material Symbols
The same icon in other sets
More text icons from Material Symbols
add-column-leftadd-column-rightadd-linkadd-notesadd-row-aboveadd-row-belowadd-to-drivealign-centeralign-endalign-flex-centeralign-flex-endalign-flex-startalign-horizontal-centeralign-horizontal-leftalign-horizontal-rightalign-items-stretchalign-justify-centeralign-justify-flex-endalign-justify-flex-startalign-justify-space-aroundalign-justify-space-betweenalign-justify-space-evenalign-justify-stretchalign-self-stretch
Use the function icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M5.525 21Q4.4 21 3.7 20.4T3 18.8q0-.8.425-1.288t1.075-.487q.625 0 1.063.425T6 18.475q0 .125-.012.225t-.038.225q.125-.025.213-.138t.137-.312L7.85 10H6q-.425 0-.712-.287T5 9t.288-.712T6 8h2.225l.525-2.85q.175-.95.938-1.55T11.5 3q1.1 0 1.8.65t.7 1.625q0 .75-.425 1.238T12.5 7q-.625 0-1.062-.425T11 5.525q0-.125.013-.225t.037-.225q-.15.05-.225.15t-.125.3L10.275 8H14q.425 0 .712.288T15 9q0 .375-.238.65t-.587.325l1.325 1.5l1.325-1.5q-.35-.05-.587-.325T16 9q0-.425.288-.712T17 8h3q.425 0 .713.288T21 9t-.288.713T20 10h-.55l-2.625 3l2.625 3H20q.425 0 .713.288T21 17t-.288.713T20 18h-3q-.425 0-.712-.288T16 17q0-.375.238-.65t.587-.325L15.5 14.5l-1.325 1.525q.35.05.588.325T15 17q0 .425-.287.713T14 18h-3q-.425 0-.712-.288T10 17t.288-.712T11 16h.55l2.625-3l-2.625-3H9.9l-1.6 8.6q-.2 1.125-.925 1.763T5.525 21"/></svg>
React
import type { SVGProps } from "react";
export function MaterialSymbolsFunctionRounded(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="M5.525 21Q4.4 21 3.7 20.4T3 18.8q0-.8.425-1.288t1.075-.487q.625 0 1.063.425T6 18.475q0 .125-.012.225t-.038.225q.125-.025.213-.138t.137-.312L7.85 10H6q-.425 0-.712-.287T5 9t.288-.712T6 8h2.225l.525-2.85q.175-.95.938-1.55T11.5 3q1.1 0 1.8.65t.7 1.625q0 .75-.425 1.238T12.5 7q-.625 0-1.062-.425T11 5.525q0-.125.013-.225t.037-.225q-.15.05-.225.15t-.125.3L10.275 8H14q.425 0 .712.288T15 9q0 .375-.238.65t-.587.325l1.325 1.5l1.325-1.5q-.35-.05-.587-.325T16 9q0-.425.288-.712T17 8h3q.425 0 .713.288T21 9t-.288.713T20 10h-.55l-2.625 3l2.625 3H20q.425 0 .713.288T21 17t-.288.713T20 18h-3q-.425 0-.712-.288T16 17q0-.375.238-.65t.587-.325L15.5 14.5l-1.325 1.525q.35.05.588.325T15 17q0 .425-.287.713T14 18h-3q-.425 0-.712-.288T10 17t.288-.712T11 16h.55l2.625-3l-2.625-3H9.9l-1.6 8.6q-.2 1.125-.925 1.763T5.525 21"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M5.525 21Q4.4 21 3.7 20.4T3 18.8q0-.8.425-1.288t1.075-.487q.625 0 1.063.425T6 18.475q0 .125-.012.225t-.038.225q.125-.025.213-.138t.137-.312L7.85 10H6q-.425 0-.712-.287T5 9t.288-.712T6 8h2.225l.525-2.85q.175-.95.938-1.55T11.5 3q1.1 0 1.8.65t.7 1.625q0 .75-.425 1.238T12.5 7q-.625 0-1.062-.425T11 5.525q0-.125.013-.225t.037-.225q-.15.05-.225.15t-.125.3L10.275 8H14q.425 0 .712.288T15 9q0 .375-.238.65t-.587.325l1.325 1.5l1.325-1.5q-.35-.05-.587-.325T16 9q0-.425.288-.712T17 8h3q.425 0 .713.288T21 9t-.288.713T20 10h-.55l-2.625 3l2.625 3H20q.425 0 .713.288T21 17t-.288.713T20 18h-3q-.425 0-.712-.288T16 17q0-.375.238-.65t.587-.325L15.5 14.5l-1.325 1.525q.35.05.588.325T15 17q0 .425-.287.713T14 18h-3q-.425 0-.712-.288T10 17t.288-.712T11 16h.55l2.625-3l-2.625-3H9.9l-1.6 8.6q-.2 1.125-.925 1.763T5.525 21"/></svg> </template>
CSS
.icon-function-rounded {
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%22M5.525%2021Q4.4%2021%203.7%2020.4T3%2018.8q0-.8.425-1.288t1.075-.487q.625%200%201.063.425T6%2018.475q0%20.125-.012.225t-.038.225q.125-.025.213-.138t.137-.312L7.85%2010H6q-.425%200-.712-.287T5%209t.288-.712T6%208h2.225l.525-2.85q.175-.95.938-1.55T11.5%203q1.1%200%201.8.65t.7%201.625q0%20.75-.425%201.238T12.5%207q-.625%200-1.062-.425T11%205.525q0-.125.013-.225t.037-.225q-.15.05-.225.15t-.125.3L10.275%208H14q.425%200%20.712.288T15%209q0%20.375-.238.65t-.587.325l1.325%201.5l1.325-1.5q-.35-.05-.587-.325T16%209q0-.425.288-.712T17%208h3q.425%200%20.713.288T21%209t-.288.713T20%2010h-.55l-2.625%203l2.625%203H20q.425%200%20.713.288T21%2017t-.288.713T20%2018h-3q-.425%200-.712-.288T16%2017q0-.375.238-.65t.587-.325L15.5%2014.5l-1.325%201.525q.35.05.588.325T15%2017q0%20.425-.287.713T14%2018h-3q-.425%200-.712-.288T10%2017t.288-.712T11%2016h.55l2.625-3l-2.625-3H9.9l-1.6%208.6q-.2%201.125-.925%201.763T5.525%2021%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%22M5.525%2021Q4.4%2021%203.7%2020.4T3%2018.8q0-.8.425-1.288t1.075-.487q.625%200%201.063.425T6%2018.475q0%20.125-.012.225t-.038.225q.125-.025.213-.138t.137-.312L7.85%2010H6q-.425%200-.712-.287T5%209t.288-.712T6%208h2.225l.525-2.85q.175-.95.938-1.55T11.5%203q1.1%200%201.8.65t.7%201.625q0%20.75-.425%201.238T12.5%207q-.625%200-1.062-.425T11%205.525q0-.125.013-.225t.037-.225q-.15.05-.225.15t-.125.3L10.275%208H14q.425%200%20.712.288T15%209q0%20.375-.238.65t-.587.325l1.325%201.5l1.325-1.5q-.35-.05-.587-.325T16%209q0-.425.288-.712T17%208h3q.425%200%20.713.288T21%209t-.288.713T20%2010h-.55l-2.625%203l2.625%203H20q.425%200%20.713.288T21%2017t-.288.713T20%2018h-3q-.425%200-.712-.288T16%2017q0-.375.238-.65t.587-.325L15.5%2014.5l-1.325%201.525q.35.05.588.325T15%2017q0%20.425-.287.713T14%2018h-3q-.425%200-.712-.288T10%2017t.288-.712T11%2016h.55l2.625-3l-2.625-3H9.9l-1.6%208.6q-.2%201.125-.925%201.763T5.525%2021%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/function-rounded.svg?color=%231a73e8&size=48