UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 621 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const KeynoteFill = /* @__PURE__ */ memo(function KeynoteFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M19 2c.552 0 1.086.43 1.195.977l1.61 8.046c.108.54-.26.977-.797.977H13v8h4v2H7v-2h4v-8H2.992c-.548 0-.906-.43-.797-.977l1.61-8.046C3.913 2.437 4.445 2 5 2z"/> </Svg>); }); /** * Remix Icon: Keynote Fill * @see {@link https://remixicon.com/icon/keynote-fill Remix Icon Docs} */ export { KeynoteFill };