UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 1.32 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const PendingActions = ({ 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: "M15.333 12.476C12.705 12.476 10.571 14.610 10.571 17.238C10.571 19.867 12.705 22.000 15.333 22.000C17.962 22.000 20.095 19.867 20.095 17.238C20.095 14.610 17.962 12.476 15.333 12.476ZM16.905 19.476L14.857 17.429V12.476H17.714V15.133L19.476 16.895L18.810 17.571ZM18.190 2.000H15.162C12.857 2.800 11.810 2.000 10.571 2.000C9.333 2.000 8.286 2.800 7.886 3.905H4.857C5.714 2.000 4.857 2.857 4.857 3.905V20.095C2.952 21.143 3.810 22.000 4.857 22.000H10.676C12.019 19.552 11.562 18.905 11.229 18.190H6.762V3.905H8.667V6.762H16.286V3.905H18.190V8.743C18.867 8.838 19.505 9.038 20.095 9.314V5.810C18.190 4.762 17.333 3.905 16.286 3.905ZM10.571 5.810C10.048 5.810 9.619 5.381 9.619 4.857C9.619 4.333 10.048 3.905 10.571 3.905C11.095 3.905 11.524 4.333 11.524 4.857C11.524 5.381 11.095 5.810 10.571 5.810Z", fill: color }))); }; PendingActions.displayName = 'PendingActions';