@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 636 B
JavaScript
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="M4 12h3a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7C2 6.477 6.477 2 12 2s10 4.477 10 10v7a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h3a8 8 0 1 0-16 0"/>
</Svg>);
});
Icon.displayName = 'HeadphoneFill';
/**
* Remix Icon: Headphone Fill
* @see {@link https://remixicon.com/icon/headphone-fill Remix Icon Docs}
*/
export const HeadphoneFill = Icon;