styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.03 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Wink = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M8 16A8 8 0 108 0a8 8 0 000 16zM8 1.5a6.5 6.5 0 110 13 6.5 6.5 0 010-13zm.48 9.61c2.191-.433 3.892-1.43 4.507-2.759C12.649 10.975 10.463 13 7.817 13c-1.863 0-3.498-1.004-4.42-2.515 1.1.86 3.04 1.028 5.083.625zM10 5.5c0-.828.448-1.5 1-1.5s1 .672 1 1.5S11.552 7 11 7s-1-.672-1-1.5zm-4.5.305c-.653 0-1.208.245-1.414.586C4.031 6.299 4 5.888 4 5.786c0-.485.672-.879 1.5-.879s1.5.394 1.5.879c0 .103-.03.514-.086.605-.206-.341-.761-.586-1.414-.586z", key: "k0" })));
});
Wink.displayName = 'Wink';
export var WinkDimensions = { height: 16, width: 16 };