buoy icon
buoy from Carbon by IBM · Outline · Planning · Apache-2.0 Free for personal and commercial use.
- Name
- buoy
- Set
- Carbon
- Style
- Outline
- Category
- Planning
- Viewbox
- 32×32
- License
- Apache 2.0
The same icon in other sets
More planning icons from Carbon
accumulation-iceaccumulation-precipitationaccumulation-rainaccumulation-snowagriculture-analyticsairline-digital-gateairline-manage-gatesairline-passenger-careairline-rapid-boardairport-01airport-02airport-locationalarmalarm-addalarm-subtractarray-date-timearray-timearrivalbaggage-claimbarbicyclebootbuscabin-care
Use the buoy icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M28 22a3.44 3.44 0 0 1-3.051-2.316a1 1 0 0 0-1.896-.005A3.44 3.44 0 0 1 20 22a3.44 3.44 0 0 1-3.051-2.316A1.01 1.01 0 0 0 16 19a.99.99 0 0 0-.947.679A3.44 3.44 0 0 1 12 22a3.44 3.44 0 0 1-3.051-2.316A1.01 1.01 0 0 0 8 19a.97.97 0 0 0-.947.679A3.44 3.44 0 0 1 4 22H2v2h2a4.93 4.93 0 0 0 4-1.987a5.6 5.6 0 0 0 1 .99a7 7 0 0 0 14 0a5.6 5.6 0 0 0 1-.99A4.93 4.93 0 0 0 28 24h2v-2Zm-12 6a5 5 0 0 1-4.907-4.085A5 5 0 0 0 12 24a4.93 4.93 0 0 0 4-1.987A4.93 4.93 0 0 0 20 24a5 5 0 0 0 .908-.085A5 5 0 0 1 16 28"/><path fill="currentColor" d="M20.07 7.835A2.01 2.01 0 0 0 18.077 6H17V2h-2v4h-1.082a1.995 1.995 0 0 0-1.986 1.772L10.28 19h2.022l.734-5h5.921l.735 5h2.021ZM13.33 12l.588-4l4.167.063l.578 3.937Z"/></svg>
React
import type { SVGProps } from "react";
export function CarbonBuoy(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M28 22a3.44 3.44 0 0 1-3.051-2.316a1 1 0 0 0-1.896-.005A3.44 3.44 0 0 1 20 22a3.44 3.44 0 0 1-3.051-2.316A1.01 1.01 0 0 0 16 19a.99.99 0 0 0-.947.679A3.44 3.44 0 0 1 12 22a3.44 3.44 0 0 1-3.051-2.316A1.01 1.01 0 0 0 8 19a.97.97 0 0 0-.947.679A3.44 3.44 0 0 1 4 22H2v2h2a4.93 4.93 0 0 0 4-1.987a5.6 5.6 0 0 0 1 .99a7 7 0 0 0 14 0a5.6 5.6 0 0 0 1-.99A4.93 4.93 0 0 0 28 24h2v-2Zm-12 6a5 5 0 0 1-4.907-4.085A5 5 0 0 0 12 24a4.93 4.93 0 0 0 4-1.987A4.93 4.93 0 0 0 20 24a5 5 0 0 0 .908-.085A5 5 0 0 1 16 28"/><path fill="currentColor" d="M20.07 7.835A2.01 2.01 0 0 0 18.077 6H17V2h-2v4h-1.082a1.995 1.995 0 0 0-1.986 1.772L10.28 19h2.022l.734-5h5.921l.735 5h2.021ZM13.33 12l.588-4l4.167.063l.578 3.937Z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M28 22a3.44 3.44 0 0 1-3.051-2.316a1 1 0 0 0-1.896-.005A3.44 3.44 0 0 1 20 22a3.44 3.44 0 0 1-3.051-2.316A1.01 1.01 0 0 0 16 19a.99.99 0 0 0-.947.679A3.44 3.44 0 0 1 12 22a3.44 3.44 0 0 1-3.051-2.316A1.01 1.01 0 0 0 8 19a.97.97 0 0 0-.947.679A3.44 3.44 0 0 1 4 22H2v2h2a4.93 4.93 0 0 0 4-1.987a5.6 5.6 0 0 0 1 .99a7 7 0 0 0 14 0a5.6 5.6 0 0 0 1-.99A4.93 4.93 0 0 0 28 24h2v-2Zm-12 6a5 5 0 0 1-4.907-4.085A5 5 0 0 0 12 24a4.93 4.93 0 0 0 4-1.987A4.93 4.93 0 0 0 20 24a5 5 0 0 0 .908-.085A5 5 0 0 1 16 28"/><path fill="currentColor" d="M20.07 7.835A2.01 2.01 0 0 0 18.077 6H17V2h-2v4h-1.082a1.995 1.995 0 0 0-1.986 1.772L10.28 19h2.022l.734-5h5.921l.735 5h2.021ZM13.33 12l.588-4l4.167.063l.578 3.937Z"/></svg> </template>
CSS
.icon-buoy {
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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M28%2022a3.44%203.44%200%200%201-3.051-2.316a1%201%200%200%200-1.896-.005A3.44%203.44%200%200%201%2020%2022a3.44%203.44%200%200%201-3.051-2.316A1.01%201.01%200%200%200%2016%2019a.99.99%200%200%200-.947.679A3.44%203.44%200%200%201%2012%2022a3.44%203.44%200%200%201-3.051-2.316A1.01%201.01%200%200%200%208%2019a.97.97%200%200%200-.947.679A3.44%203.44%200%200%201%204%2022H2v2h2a4.93%204.93%200%200%200%204-1.987a5.6%205.6%200%200%200%201%20.99a7%207%200%200%200%2014%200a5.6%205.6%200%200%200%201-.99A4.93%204.93%200%200%200%2028%2024h2v-2Zm-12%206a5%205%200%200%201-4.907-4.085A5%205%200%200%200%2012%2024a4.93%204.93%200%200%200%204-1.987A4.93%204.93%200%200%200%2020%2024a5%205%200%200%200%20.908-.085A5%205%200%200%201%2016%2028%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20.07%207.835A2.01%202.01%200%200%200%2018.077%206H17V2h-2v4h-1.082a1.995%201.995%200%200%200-1.986%201.772L10.28%2019h2.022l.734-5h5.921l.735%205h2.021ZM13.33%2012l.588-4l4.167.063l.578%203.937Z%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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M28%2022a3.44%203.44%200%200%201-3.051-2.316a1%201%200%200%200-1.896-.005A3.44%203.44%200%200%201%2020%2022a3.44%203.44%200%200%201-3.051-2.316A1.01%201.01%200%200%200%2016%2019a.99.99%200%200%200-.947.679A3.44%203.44%200%200%201%2012%2022a3.44%203.44%200%200%201-3.051-2.316A1.01%201.01%200%200%200%208%2019a.97.97%200%200%200-.947.679A3.44%203.44%200%200%201%204%2022H2v2h2a4.93%204.93%200%200%200%204-1.987a5.6%205.6%200%200%200%201%20.99a7%207%200%200%200%2014%200a5.6%205.6%200%200%200%201-.99A4.93%204.93%200%200%200%2028%2024h2v-2Zm-12%206a5%205%200%200%201-4.907-4.085A5%205%200%200%200%2012%2024a4.93%204.93%200%200%200%204-1.987A4.93%204.93%200%200%200%2020%2024a5%205%200%200%200%20.908-.085A5%205%200%200%201%2016%2028%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20.07%207.835A2.01%202.01%200%200%200%2018.077%206H17V2h-2v4h-1.082a1.995%201.995%200%200%200-1.986%201.772L10.28%2019h2.022l.734-5h5.921l.735%205h2.021ZM13.33%2012l.588-4l4.167.063l.578%203.937Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/carbon/buoy.svg?color=%231a73e8&size=48