styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Buoy = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm7.736 8h-3.16A5.02 5.02 0 0014 7.424V4.263A8.015 8.015 0 0119.736 10zM12 15c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zM10 4.263v3.161A5.02 5.02 0 007.424 10h-3.16A8.015 8.015 0 0110 4.263zM4.264 14h3.16A5.02 5.02 0 0010 16.576v3.161A8.015 8.015 0 014.264 14zM14 19.737v-3.161A5.02 5.02 0 0016.576 14h3.16A8.015 8.015 0 0114 19.737z", key: "k0" })));
});
Buoy.displayName = 'Buoy';
export var BuoyDimensions = { height: 24, width: 24 };