@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 640 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="M3.084 15.25c-1.664 0-2.6-1.912-1.58-3.226L10.21.806C10.794.054 12 .466 12 1.42V8.75h8.916c1.663 0 2.6 1.912 1.58 3.226L13.79 23.194c-.584.752-1.79.34-1.79-.613V15.25z"/>
</Svg>);
});
Icon.displayName = 'SupabaseFill';
/**
* Remix Icon: Supabase Fill
* @see {@link https://remixicon.com/icon/supabase-fill Remix Icon Docs}
*/
export const SupabaseFill = Icon;