UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 956 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const PermDeviceInformation = ({ 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: "M11.082 7.455H12.900V9.273H11.082V7.455ZM11.082 11.091H12.900V16.545H11.082V11.091ZM16.536 2.009L7.445 2.000C6.445 2.000 5.627 2.818 5.627 3.818V20.173C5.636 21.173 6.455 21.991 7.455 21.991H16.545C17.536 22.000 18.355 21.182 18.355 20.182V3.809C18.364 2.809 17.545 2.000 16.545 2.000ZM16.545 20.173H7.455V19.264H16.545V20.173ZM16.545 17.445H7.455V6.536H16.545V17.445ZM7.455 4.718V3.818H16.536V4.727H7.445Z", fill: color }))); }; PermDeviceInformation.displayName = 'PermDeviceInformation';