@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 706 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="M5 16h12.808c-.398-1.815-1.465-3.147-3.66-4.088a.46.46 0 0 1-.263-.568.45.45 0 0 1 .476-.303l4.485.51a1 1 0 0 0 .98-.498l.827-1.445a1 1 0 0 0-.105-1.142L15.5 2.5V.287C9.336 2.84 5 8.913 5 16m-1 1h15v3h1v2H3v-2h1zM15 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/>
</Svg>);
});
Icon.displayName = 'ChessFill';
/**
* Remix Icon: Chess Fill
* @see {@link https://remixicon.com/icon/chess-fill Remix Icon Docs}
*/
export const ChessFill = Icon;