onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 848 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const NetworkWifi1Bar = ({ 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: "M12.000 2.000C8.092 2.000 4.558 3.583 2.000 6.150L12.000 16.167L22.000 6.150C19.442 3.583 15.908 2.000 12.000 2.000ZM14.767 11.033C13.950 10.583 13.000 10.333 12.000 10.333C11.000 10.333 10.050 10.583 9.233 11.033L4.433 6.225C6.592 4.567 9.225 3.667 12.000 3.667C14.775 3.667 17.408 4.567 19.567 6.225L14.767 11.033Z", fill: color })));
};
NetworkWifi1Bar.displayName = 'NetworkWifi1Bar';