UNPKG

onecart-ui

Version:

OneCart UI: Cross-platform design tokens + React & React Native components

10 lines (9 loc) 1.28 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const EditLocation = ({ size = 'md', color = 'currentColor', style, }) => { const sizeMap = { xs: 16, sm: 20, md: 24, lg: 32, xl: 40 }; const iconSize = typeof size === 'number' ? size : sizeMap[size]; return (React.createElement(Svg, { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "none", style: style }, React.createElement(Path, { d: "M18.160 5.903L17.090 4.833L11.540 10.383V10.460H13.623L18.160 5.903ZM15.990 3.733L17.280 2.443C17.418 2.302 17.583 2.191 17.765 2.115C17.947 2.039 18.143 2.000 18.340 2.000C18.537 2.000 18.732 2.039 18.914 2.115C19.096 2.191 19.261 2.302 19.400 2.443L20.550 3.593C21.140 4.183 21.140 5.133 20.550 5.713L19.870 6.393L19.850 6.413L19.270 6.993L13.270 12.993H9.990V9.733L15.990 3.733ZM13.710 3.183L13.160 3.733L11.890 5.003C8.590 5.053 5.990 7.603 5.990 11.203C5.990 13.543 7.940 16.643 11.990 20.343C16.040 16.643 17.990 13.553 17.990 11.203V10.100L20.793 8.300C20.923 8.900 20.993 9.540 20.993 10.200C20.993 13.520 18.323 17.450 12.993 22.000C7.663 17.450 4.993 13.520 4.993 10.200C4.993 5.220 8.793 2.000 12.993 2.000C13.573 2.000 14.153 2.060 14.713 2.180Z", fill: color }))); }; EditLocation.displayName = 'EditLocation';