@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 670 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="M12 3a3 3 0 0 0-3 3v4a3 3 0 1 0 6 0V6a3 3 0 0 0-3-3m0-2a5 5 0 0 1 5 5v4a5 5 0 0 1-10 0V6a5 5 0 0 1 5-5M3.055 11H5.07a7.002 7.002 0 0 0 13.858 0h2.016A9.004 9.004 0 0 1 13 18.945V23h-2v-4.055A9.004 9.004 0 0 1 3.055 11"/>
</Svg>);
});
Icon.displayName = 'MicLine';
/**
* Remix Icon: Mic Line
* @see {@link https://remixicon.com/icon/mic-line Remix Icon Docs}
*/
export const MicLine = Icon;