beach icon
beach-20-filled from Fluent UI System Icons by Microsoft Corporation · 20 Filled · MIT Free for personal and commercial use.
- Name
- beach-20-filled
- Set
- Fluent UI System Icons
- Style
- 20 Filled
- Viewbox
- 20×20
- License
- MIT
11 other variants in Fluent UI System Icons
The same icon in other sets
Use the beach icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M15.386 2.7a5.214 5.214 0 0 0-7.123 1.908l-.196.34a.5.5 0 0 0 .183.683l3.834 2.214l-2.101 3.677A5 5 0 0 0 9.5 11.5c-1.987 0-3.715 1.125-4.834 2.753l.037-.002a1.5 1.5 0 0 1 1.484 1.027c.348 1.052 1.582.978 1.894.07a1.5 1.5 0 0 1 2.838 0c.311.908 1.546.982 1.894-.07a1.5 1.5 0 0 1 1.52-1.025c-.822-1.197-1.973-2.121-3.315-2.527l1.932-3.381l3.465 2a.5.5 0 0 0 .683-.183l.197-.34A5.214 5.214 0 0 0 15.386 2.7M5.238 15.592a.5.5 0 0 0-.96.039c-.17.694-.492 1.075-.859 1.297c-.384.231-.873.321-1.419.321a.5.5 0 0 0 0 1c.638 0 1.333-.102 1.936-.465a2.66 2.66 0 0 0 .884-.873c1.193 1.521 3.522 1.514 4.68-.016c1.177 1.554 3.56 1.537 4.735-.057A3.46 3.46 0 0 0 17 18.25a.5.5 0 1 0 0-1c-.983 0-1.963-.64-2.287-1.652a.5.5 0 0 0-.95-.005c-.643 1.939-3.16 1.914-3.79.08a.5.5 0 0 0-.946 0c-.63 1.834-3.147 1.859-3.79-.08"/></svg>
React
import type { SVGProps } from "react";
export function FluentBeach20Filled(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M15.386 2.7a5.214 5.214 0 0 0-7.123 1.908l-.196.34a.5.5 0 0 0 .183.683l3.834 2.214l-2.101 3.677A5 5 0 0 0 9.5 11.5c-1.987 0-3.715 1.125-4.834 2.753l.037-.002a1.5 1.5 0 0 1 1.484 1.027c.348 1.052 1.582.978 1.894.07a1.5 1.5 0 0 1 2.838 0c.311.908 1.546.982 1.894-.07a1.5 1.5 0 0 1 1.52-1.025c-.822-1.197-1.973-2.121-3.315-2.527l1.932-3.381l3.465 2a.5.5 0 0 0 .683-.183l.197-.34A5.214 5.214 0 0 0 15.386 2.7M5.238 15.592a.5.5 0 0 0-.96.039c-.17.694-.492 1.075-.859 1.297c-.384.231-.873.321-1.419.321a.5.5 0 0 0 0 1c.638 0 1.333-.102 1.936-.465a2.66 2.66 0 0 0 .884-.873c1.193 1.521 3.522 1.514 4.68-.016c1.177 1.554 3.56 1.537 4.735-.057A3.46 3.46 0 0 0 17 18.25a.5.5 0 1 0 0-1c-.983 0-1.963-.64-2.287-1.652a.5.5 0 0 0-.95-.005c-.643 1.939-3.16 1.914-3.79.08a.5.5 0 0 0-.946 0c-.63 1.834-3.147 1.859-3.79-.08"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M15.386 2.7a5.214 5.214 0 0 0-7.123 1.908l-.196.34a.5.5 0 0 0 .183.683l3.834 2.214l-2.101 3.677A5 5 0 0 0 9.5 11.5c-1.987 0-3.715 1.125-4.834 2.753l.037-.002a1.5 1.5 0 0 1 1.484 1.027c.348 1.052 1.582.978 1.894.07a1.5 1.5 0 0 1 2.838 0c.311.908 1.546.982 1.894-.07a1.5 1.5 0 0 1 1.52-1.025c-.822-1.197-1.973-2.121-3.315-2.527l1.932-3.381l3.465 2a.5.5 0 0 0 .683-.183l.197-.34A5.214 5.214 0 0 0 15.386 2.7M5.238 15.592a.5.5 0 0 0-.96.039c-.17.694-.492 1.075-.859 1.297c-.384.231-.873.321-1.419.321a.5.5 0 0 0 0 1c.638 0 1.333-.102 1.936-.465a2.66 2.66 0 0 0 .884-.873c1.193 1.521 3.522 1.514 4.68-.016c1.177 1.554 3.56 1.537 4.735-.057A3.46 3.46 0 0 0 17 18.25a.5.5 0 1 0 0-1c-.983 0-1.963-.64-2.287-1.652a.5.5 0 0 0-.95-.005c-.643 1.939-3.16 1.914-3.79.08a.5.5 0 0 0-.946 0c-.63 1.834-3.147 1.859-3.79-.08"/></svg> </template>
CSS
.icon-beach-20-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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M15.386%202.7a5.214%205.214%200%200%200-7.123%201.908l-.196.34a.5.5%200%200%200%20.183.683l3.834%202.214l-2.101%203.677A5%205%200%200%200%209.5%2011.5c-1.987%200-3.715%201.125-4.834%202.753l.037-.002a1.5%201.5%200%200%201%201.484%201.027c.348%201.052%201.582.978%201.894.07a1.5%201.5%200%200%201%202.838%200c.311.908%201.546.982%201.894-.07a1.5%201.5%200%200%201%201.52-1.025c-.822-1.197-1.973-2.121-3.315-2.527l1.932-3.381l3.465%202a.5.5%200%200%200%20.683-.183l.197-.34A5.214%205.214%200%200%200%2015.386%202.7M5.238%2015.592a.5.5%200%200%200-.96.039c-.17.694-.492%201.075-.859%201.297c-.384.231-.873.321-1.419.321a.5.5%200%200%200%200%201c.638%200%201.333-.102%201.936-.465a2.66%202.66%200%200%200%20.884-.873c1.193%201.521%203.522%201.514%204.68-.016c1.177%201.554%203.56%201.537%204.735-.057A3.46%203.46%200%200%200%2017%2018.25a.5.5%200%201%200%200-1c-.983%200-1.963-.64-2.287-1.652a.5.5%200%200%200-.95-.005c-.643%201.939-3.16%201.914-3.79.08a.5.5%200%200%200-.946%200c-.63%201.834-3.147%201.859-3.79-.08%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M15.386%202.7a5.214%205.214%200%200%200-7.123%201.908l-.196.34a.5.5%200%200%200%20.183.683l3.834%202.214l-2.101%203.677A5%205%200%200%200%209.5%2011.5c-1.987%200-3.715%201.125-4.834%202.753l.037-.002a1.5%201.5%200%200%201%201.484%201.027c.348%201.052%201.582.978%201.894.07a1.5%201.5%200%200%201%202.838%200c.311.908%201.546.982%201.894-.07a1.5%201.5%200%200%201%201.52-1.025c-.822-1.197-1.973-2.121-3.315-2.527l1.932-3.381l3.465%202a.5.5%200%200%200%20.683-.183l.197-.34A5.214%205.214%200%200%200%2015.386%202.7M5.238%2015.592a.5.5%200%200%200-.96.039c-.17.694-.492%201.075-.859%201.297c-.384.231-.873.321-1.419.321a.5.5%200%200%200%200%201c.638%200%201.333-.102%201.936-.465a2.66%202.66%200%200%200%20.884-.873c1.193%201.521%203.522%201.514%204.68-.016c1.177%201.554%203.56%201.537%204.735-.057A3.46%203.46%200%200%200%2017%2018.25a.5.5%200%201%200%200-1c-.983%200-1.963-.64-2.287-1.652a.5.5%200%200%200-.95-.005c-.643%201.939-3.16%201.914-3.79.08a.5.5%200%200%200-.946%200c-.63%201.834-3.147%201.859-3.79-.08%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/beach-20-filled.svg?color=%231a73e8&size=48