UNPKG

onecart-ui

Version:

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

9 lines (8 loc) 936 B
import React from 'react'; export const PowerOff = ({ 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: "M9.678 2.000H7.571V3.980L9.678 6.086V2.305ZM15.691 8.625V12.405L17.893 14.301L18.103 14.091V8.625C17.798 7.466 16.850 6.518 15.691 6.518V2.000H13.890V6.213H9.804L11.605 8.625H15.691ZM3.485 2.885L2.000 4.370L5.465 7.835V14.417L8.846 18.103V20.957H14.417V17.798L14.923 17.292L19.630 22.000L21.115 20.515L3.485 2.885ZM12.311 16.924V19.156H10.952V17.229L7.266 13.522V9.941L13.438 15.807L12.311 16.924Z", fill: color }))); }; PowerOff.displayName = 'PowerOff';