UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 679 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ClapperboardFill = /* @__PURE__ */ memo(function ClapperboardFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m17.998 7 2.31-4h.7c.548 0 .992.445.992.993v16.014a1 1 0 0 1-.992.993H2.992A.993.993 0 0 1 2 20.007V3.993A1 1 0 0 1 2.992 3h3.006l-2.31 4h2.31l2.31-4h3.69l-2.31 4h2.31l2.31-4h3.69l-2.31 4z"/> </Svg>); }); /** * Remix Icon: Clapperboard Fill * @see {@link https://remixicon.com/icon/clapperboard-fill Remix Icon Docs} */ export { ClapperboardFill };