@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.95 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="M6.272 15.304c1.214.152 2.588.38 3.97.726 2.129.532 3.977 1.582 5.298 2.502l.42.301.38.286.335.266.291.24.348.302c.875.78.223 2.073-.797 2.073H7.922a5 5 0 0 1-3.904-1.876c-.782-.978-1.161-2.195-.55-3.379.495-.958 1.539-1.6 2.804-1.441m-1.027 2.358c-.179.348-.059.658.13.94l.135.183.07.09A3 3 0 0 0 7.922 20h6.221c-1.15-.773-2.677-1.603-4.386-2.03a32 32 0 0 0-3.733-.681c-.4-.05-.653.13-.779.373M19 2c.62 0 1.074.338 1.36.704.273.347.45.78.573 1.196.25.843.367 1.927.412 3.009a30 30 0 0 1-.007 2.436l-.035.674c-.028.44-.064.862-.106 1.247l-.067.551c-.047.347-.099.652-.154.9-.533 2.398-1.466 3.847-2.508 4.637-.999.756-2.157.92-2.915.54-.331-.165-.653-.462-.918-.77a5.7 5.7 0 0 1-.802-1.237c-.465-.975-.752-2.293-.282-3.703.291-.873.852-1.417 1.346-1.824l.26-.21c.576-.458 1.114-.928 1.448-1.597.213-.425.218-.98.199-1.503l-.02-.436-.017-.765c-.018-.85-.012-1.727.304-2.511C17.396 2.528 18.117 2 19 2m-.23 3.405c-.007.667.027 1.334.01 2.001-.015.642-.075 1.42-.386 2.041-.455.91-1.147 1.596-1.933 2.221l-.169.136-.285.24c-.293.26-.458.47-.559.772-.24.724-.14 1.434.117 2.044l.142.308.102.199c.172.322.425.723.637.722l.075-.003c.133-.011.393-.064.74-.326a3 3 0 0 0 .233-.202l.165-.173c.475-.535 1.004-1.478 1.365-3.102.042-.191.084-.436.123-.721l.056-.457q.027-.24.05-.508l.043-.55.035-.583.023-.606c.018-.615.018-1.252-.008-1.867-.042-1.027-.151-1.917-.33-2.523-.087-.293-.143-.27-.18-.113l-.02.122-.023.232-.02.486zM5.22 3.375a1 1 0 0 1 1.633 1.147l-.072.103-.233.291a2.16 2.16 0 0 0 .036 2.743l.123.134a4.16 4.16 0 0 1 .439 5.367l-.132.173-.233.292a1 1 0 0 1-1.634-1.147l.072-.103.233-.291a2.16 2.16 0 0 0-.036-2.743l-.123-.134a4.16 4.16 0 0 1-.439-5.367l.132-.173.233-.292Zm4 0a1 1 0 0 1 1.633 1.147l-.072.103-.233.291a2.16 2.16 0 0 0 .036 2.743l.123.134a4.16 4.16 0 0 1 .439 5.367l-.132.173-.233.292a1 1 0 0 1-1.634-1.147l.072-.103.233-.291a2.16 2.16 0 0 0-.036-2.743l-.123-.134a4.16 4.16 0 0 1-.439-5.367l.132-.173.233-.292Z"/>
</G>
</Svg>);
});
Icon.displayName = 'SeatHeatedLine';
/**
* MingCute Icon: Seat Heated Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const SeatHeatedLine = Icon;