UNPKG

onecart-ui

Version:

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

11 lines (10 loc) 1.06 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const AdfScanner = ({ 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: "M18.667 13.111H17.556V4.222H4.222V13.111H3.111C3.489 10.889 2.000 12.378 2.000 14.222V22.000H22.000V16.444C22.000 14.600 20.511 13.111 18.667 13.111ZM6.444 6.444H15.333V13.111H6.444V6.444ZM19.778 19.778H2.000V16.444C2.000 15.833 2.500 15.333 3.111 15.333H18.667C21.500 13.111 22.000 13.611 22.000 14.222V19.778Z", fill: color }), React.createElement(Path, { d: "M12.000 22.000C17.522 22.000 22.000 17.522 22.000 12.000C22.000 6.478 17.522 2.000 12.000 2.000C6.478 2.000 2.000 6.478 2.000 12.000C2.000 17.522 6.478 22.000 12.000 22.000Z", fill: color }))); }; AdfScanner.displayName = 'AdfScanner';