yoshoku-outline-rounded from Material Symbols by Google · Outline Rounded · Travel · Apache-2.0 Free for personal and commercial use.

Name
yoshoku-outline-rounded
Set
Material Symbols
Style
Outline Rounded
Category
Travel
Viewbox
24×24
License
Apache 2.0

5 other variants in Material Symbols

The same icon in other sets

More travel icons from Material Symbols

Use the yoshoku icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M1 12q0-2.275.863-4.275t2.362-3.5t3.5-2.362T12 1q1.45 0 2.775.35t2.525 1q.575-.125 1.2-.2t1.325-.125q.5-.025.838.325t.312.85q-.025.575-.075 1.113t-.15 1.037q1.05 1.4 1.65 3.088T23 12q0 2.275-.862 4.275t-2.363 3.5t-3.5 2.363T12 23t-4.275-.862t-3.5-2.363t-2.362-3.5T1 12m6.025 0q0 .375.125.75t.35.7l2.5 3.5l2.5-3.5q.225-.325.35-.7t.125-.75q0-.4-.125-.763t-.35-.687L10 7.025L7.5 10.55q-.225.325-.35.7t-.125.75M3 12q0 3.75 2.625 6.375T12 21t6.375-2.625T21 12q0-1.125-.275-2.175t-.775-2q-.2.35-.412.65t-.488.575q-.35.35-.737.613t-.863.462q.725.625 1.138 1.488T19 13.5q0 1.875-1.3 3.188T14.525 18q-.65 0-1.237-.175T12.2 17.35l-.6.825q-.275.375-.7.6T10 19t-.887-.225t-.688-.6L5.875 14.6q-.425-.575-.625-1.237T5.05 12t.2-1.375t.625-1.25L8.425 5.8q.275-.375.688-.587T10 5t.9.213t.7.587l.825 1.175q.2-.725.5-1.375t.775-1.2q.225-.275.488-.525t.562-.45q-.65-.2-1.338-.312T12 3Q8.25 3 5.625 5.625T3 12m11.15 2.6l-.8 1.125q.275.125.55.2t.6.075q1.05 0 1.775-.725T17 13.5q0-.95-.612-1.638t-1.513-.812q.05.25.075.475t.025.475q0 .7-.2 1.363T14.15 14.6m4.875-10.55q-1.175.125-2.05.45t-1.475.925t-.963 1.475t-.487 2.125q1.2-.125 2.075-.462t1.475-.938t.95-1.487t.475-2.088M8.75 13.863q0-.313.225-.538l.675-.675l-.875-.7q-.275-.2-.275-.537t.225-.563l1.25-1.25q.225-.225.525-.225t.525.225t.225.525t-.225.525l-.675.675l.875.725q.275.2.275.538t-.225.562l-1.25 1.25q-.225.225-.525.225t-.525-.225t-.225-.537"/></svg>

React

import type { SVGProps } from "react";

export function MaterialSymbolsYoshokuOutlineRounded(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="M1 12q0-2.275.863-4.275t2.362-3.5t3.5-2.362T12 1q1.45 0 2.775.35t2.525 1q.575-.125 1.2-.2t1.325-.125q.5-.025.838.325t.312.85q-.025.575-.075 1.113t-.15 1.037q1.05 1.4 1.65 3.088T23 12q0 2.275-.862 4.275t-2.363 3.5t-3.5 2.363T12 23t-4.275-.862t-3.5-2.363t-2.362-3.5T1 12m6.025 0q0 .375.125.75t.35.7l2.5 3.5l2.5-3.5q.225-.325.35-.7t.125-.75q0-.4-.125-.763t-.35-.687L10 7.025L7.5 10.55q-.225.325-.35.7t-.125.75M3 12q0 3.75 2.625 6.375T12 21t6.375-2.625T21 12q0-1.125-.275-2.175t-.775-2q-.2.35-.412.65t-.488.575q-.35.35-.737.613t-.863.462q.725.625 1.138 1.488T19 13.5q0 1.875-1.3 3.188T14.525 18q-.65 0-1.237-.175T12.2 17.35l-.6.825q-.275.375-.7.6T10 19t-.887-.225t-.688-.6L5.875 14.6q-.425-.575-.625-1.237T5.05 12t.2-1.375t.625-1.25L8.425 5.8q.275-.375.688-.587T10 5t.9.213t.7.587l.825 1.175q.2-.725.5-1.375t.775-1.2q.225-.275.488-.525t.562-.45q-.65-.2-1.338-.312T12 3Q8.25 3 5.625 5.625T3 12m11.15 2.6l-.8 1.125q.275.125.55.2t.6.075q1.05 0 1.775-.725T17 13.5q0-.95-.612-1.638t-1.513-.812q.05.25.075.475t.025.475q0 .7-.2 1.363T14.15 14.6m4.875-10.55q-1.175.125-2.05.45t-1.475.925t-.963 1.475t-.487 2.125q1.2-.125 2.075-.462t1.475-.938t.95-1.487t.475-2.088M8.75 13.863q0-.313.225-.538l.675-.675l-.875-.7q-.275-.2-.275-.537t.225-.563l1.25-1.25q.225-.225.525-.225t.525.225t.225.525t-.225.525l-.675.675l.875.725q.275.2.275.538t-.225.562l-1.25 1.25q-.225.225-.525.225t-.525-.225t-.225-.537"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M1 12q0-2.275.863-4.275t2.362-3.5t3.5-2.362T12 1q1.45 0 2.775.35t2.525 1q.575-.125 1.2-.2t1.325-.125q.5-.025.838.325t.312.85q-.025.575-.075 1.113t-.15 1.037q1.05 1.4 1.65 3.088T23 12q0 2.275-.862 4.275t-2.363 3.5t-3.5 2.363T12 23t-4.275-.862t-3.5-2.363t-2.362-3.5T1 12m6.025 0q0 .375.125.75t.35.7l2.5 3.5l2.5-3.5q.225-.325.35-.7t.125-.75q0-.4-.125-.763t-.35-.687L10 7.025L7.5 10.55q-.225.325-.35.7t-.125.75M3 12q0 3.75 2.625 6.375T12 21t6.375-2.625T21 12q0-1.125-.275-2.175t-.775-2q-.2.35-.412.65t-.488.575q-.35.35-.737.613t-.863.462q.725.625 1.138 1.488T19 13.5q0 1.875-1.3 3.188T14.525 18q-.65 0-1.237-.175T12.2 17.35l-.6.825q-.275.375-.7.6T10 19t-.887-.225t-.688-.6L5.875 14.6q-.425-.575-.625-1.237T5.05 12t.2-1.375t.625-1.25L8.425 5.8q.275-.375.688-.587T10 5t.9.213t.7.587l.825 1.175q.2-.725.5-1.375t.775-1.2q.225-.275.488-.525t.562-.45q-.65-.2-1.338-.312T12 3Q8.25 3 5.625 5.625T3 12m11.15 2.6l-.8 1.125q.275.125.55.2t.6.075q1.05 0 1.775-.725T17 13.5q0-.95-.612-1.638t-1.513-.812q.05.25.075.475t.025.475q0 .7-.2 1.363T14.15 14.6m4.875-10.55q-1.175.125-2.05.45t-1.475.925t-.963 1.475t-.487 2.125q1.2-.125 2.075-.462t1.475-.938t.95-1.487t.475-2.088M8.75 13.863q0-.313.225-.538l.675-.675l-.875-.7q-.275-.2-.275-.537t.225-.563l1.25-1.25q.225-.225.525-.225t.525.225t.225.525t-.225.525l-.675.675l.875.725q.275.2.275.538t-.225.562l-1.25 1.25q-.225.225-.525.225t-.525-.225t-.225-.537"/></svg>
</template>

CSS

.icon-yoshoku-outline-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%22M1%2012q0-2.275.863-4.275t2.362-3.5t3.5-2.362T12%201q1.45%200%202.775.35t2.525%201q.575-.125%201.2-.2t1.325-.125q.5-.025.838.325t.312.85q-.025.575-.075%201.113t-.15%201.037q1.05%201.4%201.65%203.088T23%2012q0%202.275-.862%204.275t-2.363%203.5t-3.5%202.363T12%2023t-4.275-.862t-3.5-2.363t-2.362-3.5T1%2012m6.025%200q0%20.375.125.75t.35.7l2.5%203.5l2.5-3.5q.225-.325.35-.7t.125-.75q0-.4-.125-.763t-.35-.687L10%207.025L7.5%2010.55q-.225.325-.35.7t-.125.75M3%2012q0%203.75%202.625%206.375T12%2021t6.375-2.625T21%2012q0-1.125-.275-2.175t-.775-2q-.2.35-.412.65t-.488.575q-.35.35-.737.613t-.863.462q.725.625%201.138%201.488T19%2013.5q0%201.875-1.3%203.188T14.525%2018q-.65%200-1.237-.175T12.2%2017.35l-.6.825q-.275.375-.7.6T10%2019t-.887-.225t-.688-.6L5.875%2014.6q-.425-.575-.625-1.237T5.05%2012t.2-1.375t.625-1.25L8.425%205.8q.275-.375.688-.587T10%205t.9.213t.7.587l.825%201.175q.2-.725.5-1.375t.775-1.2q.225-.275.488-.525t.562-.45q-.65-.2-1.338-.312T12%203Q8.25%203%205.625%205.625T3%2012m11.15%202.6l-.8%201.125q.275.125.55.2t.6.075q1.05%200%201.775-.725T17%2013.5q0-.95-.612-1.638t-1.513-.812q.05.25.075.475t.025.475q0%20.7-.2%201.363T14.15%2014.6m4.875-10.55q-1.175.125-2.05.45t-1.475.925t-.963%201.475t-.487%202.125q1.2-.125%202.075-.462t1.475-.938t.95-1.487t.475-2.088M8.75%2013.863q0-.313.225-.538l.675-.675l-.875-.7q-.275-.2-.275-.537t.225-.563l1.25-1.25q.225-.225.525-.225t.525.225t.225.525t-.225.525l-.675.675l.875.725q.275.2.275.538t-.225.562l-1.25%201.25q-.225.225-.525.225t-.525-.225t-.225-.537%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%22M1%2012q0-2.275.863-4.275t2.362-3.5t3.5-2.362T12%201q1.45%200%202.775.35t2.525%201q.575-.125%201.2-.2t1.325-.125q.5-.025.838.325t.312.85q-.025.575-.075%201.113t-.15%201.037q1.05%201.4%201.65%203.088T23%2012q0%202.275-.862%204.275t-2.363%203.5t-3.5%202.363T12%2023t-4.275-.862t-3.5-2.363t-2.362-3.5T1%2012m6.025%200q0%20.375.125.75t.35.7l2.5%203.5l2.5-3.5q.225-.325.35-.7t.125-.75q0-.4-.125-.763t-.35-.687L10%207.025L7.5%2010.55q-.225.325-.35.7t-.125.75M3%2012q0%203.75%202.625%206.375T12%2021t6.375-2.625T21%2012q0-1.125-.275-2.175t-.775-2q-.2.35-.412.65t-.488.575q-.35.35-.737.613t-.863.462q.725.625%201.138%201.488T19%2013.5q0%201.875-1.3%203.188T14.525%2018q-.65%200-1.237-.175T12.2%2017.35l-.6.825q-.275.375-.7.6T10%2019t-.887-.225t-.688-.6L5.875%2014.6q-.425-.575-.625-1.237T5.05%2012t.2-1.375t.625-1.25L8.425%205.8q.275-.375.688-.587T10%205t.9.213t.7.587l.825%201.175q.2-.725.5-1.375t.775-1.2q.225-.275.488-.525t.562-.45q-.65-.2-1.338-.312T12%203Q8.25%203%205.625%205.625T3%2012m11.15%202.6l-.8%201.125q.275.125.55.2t.6.075q1.05%200%201.775-.725T17%2013.5q0-.95-.612-1.638t-1.513-.812q.05.25.075.475t.025.475q0%20.7-.2%201.363T14.15%2014.6m4.875-10.55q-1.175.125-2.05.45t-1.475.925t-.963%201.475t-.487%202.125q1.2-.125%202.075-.462t1.475-.938t.95-1.487t.475-2.088M8.75%2013.863q0-.313.225-.538l.675-.675l-.875-.7q-.275-.2-.275-.537t.225-.563l1.25-1.25q.225-.225.525-.225t.525.225t.225.525t-.225.525l-.675.675l.875.725q.275.2.275.538t-.225.562l-1.25%201.25q-.225.225-.525.225t-.525-.225t-.225-.537%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/yoshoku-outline-rounded.svg?color=%231a73e8&size=48