styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
23 lines (22 loc) • 1.26 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var LifeBuoy = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("circle", { cx: 12, cy: 12, r: 10, key: "k0" }),
React.createElement("circle", { cx: 12, cy: 12, r: 4, key: "k1" }),
React.createElement("line", { x1: 4.93, x2: 9.17, y1: 4.93, y2: 9.17, key: "k2" }),
React.createElement("line", { x1: 14.83, x2: 19.07, y1: 14.83, y2: 19.07, key: "k3" }),
React.createElement("line", { x1: 14.83, x2: 19.07, y1: 9.17, y2: 4.93, key: "k4" }),
React.createElement("line", { x1: 14.83, x2: 18.36, y1: 9.17, y2: 5.64, key: "k5" }),
React.createElement("line", { x1: 4.93, x2: 9.17, y1: 19.07, y2: 14.83, key: "k6" })));
});
LifeBuoy.displayName = 'LifeBuoy';
export var LifeBuoyDimensions = { height: 24, width: 24 };