UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.57 kB
import { memo } from 'react'; import Svg, { G, Path } from 'react-native-svg'; const Icon = memo((_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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M7 9a5 5 0 0 1 10 0c0 2.098-1.39 3.376-2.528 4.966-.716 1.002-1.352 2.229-1.47 3.966C12.92 19.15 12.047 20 11 20a2 2 0 0 1-2-2c0-1.454 1.065-2.472 2.625-3.72 1.398-1.117 2.87-2.138 3.345-4.037.319-1.276.05-2.367-.606-3.14A3.15 3.15 0 0 0 12 6a3 3 0 0 0-2.905 2.25 1 1 0 0 0 1.936.5A1 1 0 0 1 12 8c.276 0 .616.134.84.397.192.227.371.636.19 1.36-.333 1.334-1.645 2.155-2.655 2.962C8.935 13.872 7 15.454 7 18a4 4 0 0 0 4 4c2.267 0 3.856-1.843 3.998-3.932.085-1.263.53-2.14 1.101-2.939C17.506 13.163 19 11.587 19 9a7 7 0 1 0-13.903 1.165 1 1 0 0 0 1.972-.33A5 5 0 0 1 7 9"/> </G> </Svg>); }); Icon.displayName = 'EarLine'; /** * MingCute Icon: Ear Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const EarLine = Icon;