onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
9 lines (8 loc) • 1.16 kB
JavaScript
import React from 'react';
export const BluetoothAudio = ({ size = 'md', color = 'currentColor', className, 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", xmlns: "http://www.w3.org/2000/svg", className: className, style: style },
React.createElement("path", { d: "M13.832 12.537L16.274 14.979C16.568 14.221 16.737 13.389 16.737 12.526C16.737 11.663 16.568 10.853 16.284 10.095L13.832 12.537ZM19.400 6.958L18.074 8.284C18.737 9.558 19.105 10.989 19.105 12.516C19.105 14.042 18.726 15.484 18.074 16.747L19.337 18.011C20.358 16.389 20.958 14.474 20.958 12.421C20.947 10.432 20.379 8.558 19.400 6.958ZM15.379 8.011L9.368 2.000H8.316V9.989L3.484 5.158L2.000 6.642L7.884 12.526L2.000 18.411L3.484 19.895L8.316 15.063V22.000H10.421L15.379 17.042L10.853 12.526L15.379 8.011ZM10.421 6.032L12.400 8.011L10.421 9.989V4.979ZM13.453 15.989L11.474 17.968V15.063L12.400 17.042Z", fill: color })));
};
BluetoothAudio.displayName = 'BluetoothAudio';