UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 882 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="M6.603 10 10 7.22v9.56L6.603 14H3v-4zM2 16h3.889l5.294 4.332a.5.5 0 0 0 .817-.387V4.055a.5.5 0 0 0-.817-.387L5.89 8H2a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m21-4c0 3.292-1.446 6.246-3.738 8.262l-1.418-1.418A8.98 8.98 0 0 0 21 12a8.98 8.98 0 0 0-3.155-6.844l1.417-1.418A10.97 10.97 0 0 1 23 12m-5 0a5.99 5.99 0 0 0-2.287-4.713l-1.429 1.429A4 4 0 0 1 16 12c0 1.36-.679 2.561-1.716 3.284l1.43 1.43A5.99 5.99 0 0 0 18 12"/> </Svg>); }); Icon.displayName = 'VolumeUpLine'; /** * Remix Icon: Volume Up Line * @see {@link https://remixicon.com/icon/volume-up-line Remix Icon Docs} */ export const VolumeUpLine = Icon;