@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 605 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M22 18V20H2V18H22ZM2 3.5L10 8.5L2 13.5V3.5ZM22 11V13H12V11H22ZM4 7.1085V9.8915L6.22641 8.5L4 7.1085ZM22 4V6H12V4H22Z"/>
</Svg>);
};
Icon.displayName = 'PlayList2Line';
/**
* Remix Icon: Play List 2 Line
* @see {@link https://remixicon.com/icon/play-list-2-line Remix Icon Docs}
*/
export const PlayList2Line = memo(Icon);