UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 536 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const PlayList2Fill = /* @__PURE__ */ memo(function PlayList2Fill(_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>); }); /** * Remix Icon: Play List 2 Fill * @see {@link https://remixicon.com/icon/play-list-2-fill Remix Icon Docs} */ export { PlayList2Fill };