@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 3.17 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M11.507 1.953c1.268.008 2.671.511 4 1.84.315.315.585.685.7 1.123a1.7 1.7 0 0 1-.169 1.287c-.184.331-.452.583-.678.768-.532.436-1.165.748-1.653 1.236a2.06 2.06 0 0 0-.554.96c.737-.759 1.668-1.49 2.689-1.933.813-.353 1.745-.548 2.701-.354.976.197 1.856.774 2.584 1.744.468.625.928 1.65.92 2.883-.008 1.268-.51 2.671-1.84 4-.315.315-.684.585-1.123.7a1.7 1.7 0 0 1-1.287-.169c-.331-.184-.583-.452-.768-.678-.435-.532-.748-1.165-1.236-1.653a2.06 2.06 0 0 0-.96-.554c.759.737 1.49 1.668 1.933 2.689.353.813.548 1.745.355 2.701-.198.976-.775 1.856-1.745 2.584-.625.468-1.65.928-2.883.92-1.267-.008-2.671-.51-4-1.84-.315-.315-.585-.684-.7-1.123a1.7 1.7 0 0 1 .17-1.287c.183-.331.451-.583.677-.768.532-.435 1.165-.748 1.653-1.236a2.06 2.06 0 0 0 .555-.96c-.738.759-1.67 1.49-2.69 1.933-.813.353-1.745.548-2.701.355-.976-.198-1.856-.775-2.584-1.745-.468-.625-.928-1.65-.92-2.883.008-1.267.511-2.671 1.84-4 .315-.315.685-.585 1.123-.7a1.7 1.7 0 0 1 1.287.17c.331.183.583.451.768.677.436.532.748 1.165 1.236 1.653.254.254.579.461.96.555-.759-.738-1.49-1.67-1.933-2.69-.353-.813-.548-1.745-.354-2.701.197-.976.774-1.856 1.744-2.584.625-.468 1.65-.928 2.883-.92m-1.604 10.94c-1.27.094-2.375-.45-3.11-1.186-.386-.386-.698-.844-.936-1.194a9 9 0 0 0-.434-.607c-.097-.118-.108-.107-.216.001-.984.984-1.25 1.894-1.254 2.6a2.85 2.85 0 0 0 .52 1.669c.482.641.958.899 1.38.984.441.09.948.015 1.51-.229.96-.416 1.894-1.249 2.54-2.038m2.99 1.204c.094 1.27-.45 2.375-1.186 3.11-.386.386-.844.698-1.194.936-.205.14-.414.276-.607.434-.118.097-.107.108.001.216.984.984 1.895 1.25 2.6 1.254a2.85 2.85 0 0 0 1.669-.52c.641-.482.899-.958.984-1.38.09-.441.015-.948-.229-1.51-.416-.96-1.249-1.893-2.038-2.54m1.204-2.99c1.27-.094 2.375.45 3.11 1.186.54.54.89 1.215 1.37 1.8.097.12.108.108.216 0 .984-.984 1.25-1.894 1.254-2.6.005-.738-.277-1.345-.52-1.669-.482-.641-.958-.899-1.38-.984-.441-.09-.948-.015-1.51.229-.96.416-1.893 1.249-2.54 2.038m-2.99-1.204c-.094-1.27.45-2.375 1.186-3.11.397-.397.87-.715 1.224-.956a8 8 0 0 0 .577-.414c.118-.097.107-.108-.001-.216-.984-.984-1.894-1.25-2.6-1.254a2.85 2.85 0 0 0-1.669.52c-.641.482-.899.958-.984 1.38-.09.441-.015.948.229 1.51.416.96 1.249 1.894 2.038 2.54"/>
</G>
</Svg>);
});
Icon.displayName = 'FanLine';
/**
* MingCute Icon: Fan Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FanLine = Icon;