onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 815 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const Wifi = ({ 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: "M2.000 7.518L3.818 9.336C8.336 4.818 15.664 4.818 20.182 9.336L22.000 7.518C16.482 2.000 7.527 2.000 2.000 7.518ZM9.273 14.791L12.000 17.518L14.727 14.791C13.227 13.282 10.782 13.282 9.273 14.791ZM5.636 11.155L7.455 12.973C9.964 10.464 14.036 10.464 16.545 12.973L18.364 11.155C14.855 7.645 9.155 7.645 5.636 11.155Z", fill: color })));
};
Wifi.displayName = 'Wifi';