onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 930 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const PowerSettingsNew = ({ 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: "M13.111 2.000H10.889V13.111H13.111V2.000ZM18.478 4.411L16.900 5.989C18.656 7.400 19.778 9.567 19.778 12.000C19.778 16.300 16.300 19.778 12.000 19.778C7.700 19.778 4.222 16.300 4.222 12.000C4.222 9.567 5.344 7.400 7.089 5.978L5.522 4.411C3.367 6.244 2.000 8.956 2.000 12.000C2.000 17.522 6.478 22.000 12.000 22.000C17.522 22.000 22.000 17.522 22.000 12.000C22.000 8.956 20.633 6.244 18.478 4.411Z", fill: color })));
};
PowerSettingsNew.displayName = 'PowerSettingsNew';