onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 923 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const SettingsBluetooth = ({ 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: "M7.975 22.000H9.642V20.333H7.975V22.000ZM4.642 22.000H6.308V20.333H4.642V22.000ZM11.308 22.000H12.975V20.333H11.308V22.000ZM13.567 6.758L8.808 2.000H7.975V8.325L4.150 4.500L2.975 5.675L7.633 10.333L2.975 14.992L4.150 16.167L7.975 12.342V15.475H12.000L13.567 13.908L9.983 10.333L13.567 6.758ZM9.642 5.192L11.208 6.758L9.642 8.325V2.000ZM14.400 10.717L12.833 12.283V12.342L11.208 13.908Z", fill: color })));
};
SettingsBluetooth.displayName = 'SettingsBluetooth';