UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 537 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="M22 18v2H2v-2zM2 3.5l8 5-8 5zM22 11v2H12v-2zm0-7v2H12V4z"/> </Svg>); }); Icon.displayName = 'PlayList2Fill'; /** * Remix Icon: Play List 2 Fill * @see {@link https://remixicon.com/icon/play-list-2-fill Remix Icon Docs} */ export const PlayList2Fill = Icon;