styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.17 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Palette = 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: "M9.38 21.646A9.985 9.985 0 0012 22l.141-.001a2.998 2.998 0 002.515-1.425c.542-.876.6-1.953.153-2.88l-.198-.415c-.453-.942-.097-1.796.388-2.281.485-.485 1.341-.841 2.28-.388h.001l.413.199a2.99 2.99 0 002.881-.153A2.997 2.997 0 0022 12.141a9.926 9.926 0 00-.353-2.76c-1.038-3.827-4.353-6.754-8.246-7.285-3.149-.427-6.241.602-8.471 2.833S1.666 10.247 2.096 13.4c.53 3.894 3.458 7.208 7.284 8.246zM15.5 6a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm-5-1a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM9 15.506a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm-2.5-6.5a1.5 1.5 0 11-.001 3.001A1.5 1.5 0 016.5 9.006z", key: "k0" })));
});
Palette.displayName = 'Palette';
export var PaletteDimensions = { height: 24, width: 24 };