UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 615 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const PlayReverseLargeFill = /* @__PURE__ */ memo(function PlayReverseLargeFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M18 20.196V3.804a1 1 0 0 0-1.53-.848L3.357 11.152a1 1 0 0 0 0 1.696l13.113 8.196a1 1 0 0 0 1.53-.848"/> </Svg>); }); /** * Remix Icon: Play Reverse Large Fill * @see {@link https://remixicon.com/icon/play-reverse-large-fill Remix Icon Docs} */ export { PlayReverseLargeFill };