UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 620 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const FontSansSerif = /* @__PURE__ */ memo(function FontSansSerif(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M5 4h14v4h-1.5C17 6 17 5 15 5h-5v7h3c1 0 2-.5 2-2h1v5h-1c0-1.5-1-2-2-2h-3v4.5c0 2.5 3.5 2.5 3.5 2.5v1H5v-1c2-.5 2-1.5 2-2.5v-10c0-1 0-2-2-2.5z"/> </Svg>); }); /** * Remix Icon: Font Sans Serif * @see {@link https://remixicon.com/icon/font-sans-serif Remix Icon Docs} */ export { FontSansSerif };