UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 798 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M3 18h18V6H3zM1 5a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm8 5a1 1 0 1 0-2 0 1 1 0 0 0 2 0m2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-2.998 6c-.967 0-1.84.39-2.475 1.025l-1.414-1.414A5.49 5.49 0 0 1 8.002 14c1.518 0 2.895.617 3.889 1.61l-1.414 1.415A3.49 3.49 0 0 0 8.002 16M13 9v6h2V9zm4 0v6h2V9z"/> </Svg>); }); Icon.displayName = 'PassPendingLine'; /** * Remix Icon: Pass Pending Line * @see {@link https://remixicon.com/icon/pass-pending-line Remix Icon Docs} */ export const PassPendingLine = Icon;