styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.12 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var UpsideDown = 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 2zM8.507 15a1.494 1.494 0 11.001-2.987A1.494 1.494 0 018.507 15zm4.301-6.919a4.108 4.108 0 00-1.616 0 4.12 4.12 0 00-.751.233c-.234.1-.463.224-.678.368a4.077 4.077 0 00-1.08 1.082L7.024 8.646a6.026 6.026 0 012.639-2.175 6.097 6.097 0 011.128-.35 6.061 6.061 0 012.415 0 5.919 5.919 0 012.148.903 6.078 6.078 0 011.621 1.622l-1.658 1.117a3.994 3.994 0 00-.488-.59 3.988 3.988 0 00-2.021-1.092zM15.5 15a1.5 1.5 0 11.001-3.001A1.5 1.5 0 0115.5 15z", key: "k0" })));
});
UpsideDown.displayName = 'UpsideDown';
export var UpsideDownDimensions = { height: 24, width: 24 };