@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 749 B
JavaScript
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="M11 2.598V13.97H3.9c-.67 0-1.07-.784-.643-1.336zm2 5.433V2.333c0-1.811-2.297-2.624-3.418-1.171L1.673 11.41C.246 13.26 1.548 15.969 3.9 15.969H11v5.698c0 1.811 2.296 2.624 3.418 1.171l7.908-10.249c1.427-1.849.126-4.558-2.227-4.558zm0 2h7.1c.669 0 1.069.784.643 1.336L13 21.402z"/>
</Svg>);
});
Icon.displayName = 'SupabaseLine';
/**
* Remix Icon: Supabase Line
* @see {@link https://remixicon.com/icon/supabase-line Remix Icon Docs}
*/
export const SupabaseLine = Icon;