@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 1.91 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const MouthLine = /* @__PURE__ */ memo(function MouthLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M14.927 6.002c1.903.072 3.762.963 5.148 1.875l.799.539.317.22.324.24C22.274 9.457 23 10.188 23 11c0 1.07-.952 2.172-1.869 3.03l-.32.293-.308.27-.417.355C18.27 16.496 15.549 18 12 18c-3.422 0-6.075-1.399-7.888-2.885l-.325-.274-.428-.372-.313-.284C2.09 13.298 1 12.09 1 11.001c0-.779.616-1.45 1.31-2.001l.324-.245q.081-.06.162-.116l.319-.219.57-.382c1.408-.965 3.373-1.96 5.388-2.036.645-.024 1.207.186 1.756.445l.411.2q.287.145.581.28c.155.069.203.069.358 0l.292-.137.7-.343c.55-.26 1.11-.47 1.756-.445m4.772 6.563c-2.162.64-4.976.935-7.699.935s-5.537-.295-7.699-.935C6.301 14.673 9.067 16 12 16s5.699-1.327 7.7-3.435ZM14.851 8c-.39-.015-.773.166-1.141.368l-.363.204a5 5 0 0 1-.35.179c-.242.108-.602.25-.997.25s-.755-.142-.997-.25a5 5 0 0 1-.354-.182l-.36-.203c-.365-.202-.743-.381-1.14-.366-1.912.072-3.742 1.142-5.194 2.332 1.863.75 4.89 1.167 8.045 1.167s6.182-.417 8.045-1.167c-1.452-1.19-3.282-2.26-5.194-2.332"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Mouth Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { MouthLine };