UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 3.37 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,0 L24,24 L0,24 L0,0 L24,0 Z M12.593,23.258 L12.582,23.26 L12.511,23.295 L12.491,23.299 L12.477,23.295 L12.406,23.26 C12.396,23.256 12.387,23.259 12.382,23.265 L12.378,23.275 L12.361,23.703 L12.366,23.723 L12.376,23.736 L12.48,23.81 L12.495,23.814 L12.507,23.81 L12.611,23.736 L12.623,23.72 L12.627,23.703 L12.61,23.276 C12.608,23.266 12.601,23.259 12.593,23.258 M12.858,23.145 L12.845,23.147 L12.66,23.24 L12.65,23.25 L12.647,23.261 L12.665,23.691 L12.67,23.703 L12.678,23.71 L12.879,23.803 C12.891,23.807 12.902,23.803 12.908,23.795 L12.912,23.781 L12.878,23.167 C12.875,23.155 12.868,23.147 12.858,23.145 M12.143,23.147 C12.1336684,23.1427606 12.1226578,23.1452075 12.116,23.153 L12.11,23.167 L12.076,23.781 C12.076,23.793 12.083,23.801 12.093,23.805 L12.108,23.803 L12.309,23.71 L12.319,23.702 L12.323,23.691 L12.34,23.261 L12.337,23.249 L12.327,23.239 L12.143,23.147 Z"/> <Path fill={color} d="M12,2 C17.523,2 22.0000305,6.477 22.0000305,12 C22.0033677,13.9202624 21.4511733,15.8005016 20.41,17.414 C20.3793728,17.481546 20.3413747,17.5453693 20.296769,17.6043354 L20.225,17.689 C18.3585315,20.3905154 15.2835781,22.0022023 12,22 C6.477,22 2,17.523 2,12 C2,6.477 6.477,2 12,2 Z M17.9839633,6.69480211 C15.7791917,4.2100195 12.2682467,3.34630239 9.16232725,4.52461766 C6.05640776,5.70293293 4.00184028,8.67807896 4,12 C3.99977304,15.3064235 6.03364889,18.2723185 9.11807767,19.4634255 C12.2025065,20.6545325 15.701897,19.8254067 17.924,17.377 L16.257472,16.598408 L16.257472,16.598408 L14.516928,15.781728 L14.516928,15.781728 L13.698,15.406 L13.698,15.406 C13.39,15.84 13.08,16.208 12.77,16.52 C11.648,17.641 10.52,18 9.5,18 C7.632,18 6,16.82 6,15 C6,13.316 7.48,12 9,12 C10.267,12 11.494,12.334 12.887,12.884 C13.0430319,12.5823232 13.1909712,12.2765629 13.3306642,11.9670478 L13.534,11.5 L9,11.5 C8.44771525,11.5 8,11.0522847 8,10.5 C8,9.98716416 8.38604019,9.56449284 8.88337887,9.50672773 L9,9.5 L11,9.5 L11,9 L8,9 C7.44771525,9 7,8.55228475 7,8 C7,7.48716416 7.38604019,7.06449284 7.88337887,7.00672773 L8,7 L11,7 L11,6 C11,5.44771525 11.4477153,5 12,5 C12.5128358,5 12.9355072,5.38604019 12.9932723,5.88337887 L13,6 L13,7 L16,7 C16.5522847,7 17,7.44771525 17,8 C17,8.51283584 16.6139598,8.93550716 16.1166211,8.99327227 L16,9 L13,9 L13,9.5 L15,9.5 C15.3261371,9.50022825 15.6316728,9.65948189 15.8186468,9.92670133 C16.0056207,10.1939208 16.050539,10.5355289 15.939,10.842 C15.542,11.937 15.137,12.876 14.729,13.677 L15.509992,14.037816 L15.509992,14.037816 L18.59972,15.485576 C18.76032,15.56012 18.9234,15.6356 19.089,15.712 C20.6285313,12.7683618 20.188735,9.17958471 17.9839633,6.69480211 Z M9,14 C8.52,14 8,14.484 8,15 C8,15.38 8.368,16 9.5,16 L9.69954726,15.9914074 C10.1481956,15.9517333 10.7024,15.7593333 11.355,15.105 C11.5116394,14.9478496 11.6592112,14.7819149 11.797,14.608 C10.687,14.194 9.827,14 9,14 Z" fillRule="nonzero"/> </G> </Svg>); }; Icon.displayName = 'AlipayLine'; /** * MingCute Icon: Alipay Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const AlipayLine = memo(Icon);