UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2 kB
import { memo } from 'react'; import { Svg, G, Path } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}> <G fill="none" fillRule="evenodd"> <Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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-.245c.054-.04.108-.078.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.2c.192.096.385.191.581.28.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.204a4.728 4.728 0 0 1-.35.179c-.242.108-.602.25-.997.25s-.755-.142-.997-.25a4.637 4.637 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.167 3.155 0 6.182-.417 8.045-1.167-1.452-1.19-3.282-2.26-5.194-2.332"/> </G> </Svg>); }; Icon.displayName = 'MouthLine'; /** * MingCute Icon: Mouth Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const MouthLine = memo(Icon);