UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 796 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m14.311 12 4.343 4.343L12.998 22h-2v-6.686l-4.364 4.364-1.415-1.415 5.779-5.778v-.97L5.219 5.737l1.415-1.415 4.364 4.364V2h2l5.656 5.657zm-1.313 1.515v5.657l2.828-2.829zm0-3.03 2.828-2.828-2.828-2.829zM19.5 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m-13 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"/> </Svg>); }); Icon.displayName = 'BluetoothConnectFill'; /** * Remix Icon: Bluetooth Connect Fill * @see {@link https://remixicon.com/icon/bluetooth-connect-fill Remix Icon Docs} */ export const BluetoothConnectFill = Icon;