MDM/mdm-front/src/assets/icons/Bluetooth.tsx

11 lines
610 B
TypeScript

import type { SVGProps } from 'react'
type IconProps = SVGProps<SVGSVGElement>
export function BluetoothIcon({ className, ...props }: IconProps) {
return (
<svg className={className} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M9.99992 10.0002L14.1666 6.66683L9.99992 3.3335V10.0002ZM9.99992 10.0002L14.1666 13.3335L9.99992 16.6668V10.0002ZM9.99992 10.0002L5.83325 6.66683M9.99992 10.0002L5.83325 13.3335" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
)
}