UNPKG

onecart-ui

Version:

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

9 lines (8 loc) 811 B
import React from 'react'; export const Power = ({ size = 'md', color = 'currentColor', className, 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", xmlns: "http://www.w3.org/2000/svg", className: className, style: style }, React.createElement("path", { d: "M16.444 8.667V13.844L12.556 17.744V19.778H11.444V17.744L7.556 13.833V8.667H16.444ZM16.444 2.000H14.222V6.444H9.778V2.000H7.556V6.444H7.544C6.333 6.433 5.333 7.433 5.333 8.644V14.778L9.222 18.667V22.000H14.778V18.667L18.667 14.767V8.667C18.667 7.444 17.667 6.444 16.444 6.444V2.000Z", fill: color }))); }; Power.displayName = 'Power';