@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.01 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M12 1a1 1 0 0 1 1 1v1.957c.031.35.069.7.109 1.049a1 1 0 0 1 .254 1.926l.063.414c.275 1.762.691 3.87 1.282 5.654H15a1 1 0 0 1 .464 1.886c.178.376.37.748.57 1.114H17a1 1 0 0 1 .23 1.974c.77 1.168 1.603 2.31 2.523 3.367A1 1 0 0 1 19 23h-4a1 1 0 0 1-.847-.468l-.061-.113a2.789 2.789 0 0 0-.522-.72C13.204 21.324 12.697 21 12 21c-.697 0-1.204.324-1.57.699a2.992 2.992 0 0 0-.436.561l-.086.159A1 1 0 0 1 9 23H5a1 1 0 0 1-.751-1.66c.919-1.058 1.75-2.197 2.521-3.366A1 1 0 0 1 7 16h.966c.2-.366.392-.739.57-1.114A1 1 0 0 1 9 13h.292c.525-1.585.913-3.428 1.185-5.055l.16-1.013a1 1 0 0 1 .254-1.926c.04-.35.078-.7.11-1.05V2a1 1 0 0 1 1-1Zm2.88 17H9.12a36.159 36.159 0 0 1-2.04 3h1.35c.14-.207.329-.452.57-.699.61-.625 1.603-1.301 3-1.301s2.39.676 3 1.301c.242.247.43.492.57.699h1.35a36.126 36.126 0 0 1-2.04-3m-1.557-3h-2.646l-.222.503-.236.497h3.562l-.236-.497zM12 10.617a34.815 34.815 0 0 1-.442 1.795L11.39 13h1.222a32.742 32.742 0 0 1-.61-2.383Z"/>
</G>
</Svg>);
};
Icon.displayName = 'EiffelTowerLine';
/**
* MingCute Icon: Eiffel Tower Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const EiffelTowerLine = memo(Icon);