@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.29 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="M5.41 3.654C6.143 3.219 7.011 3 8 3c1.03 0 1.9.55 2.475.889.675.398 1.09.611 1.525.611s.85-.213 1.525-.611C14.101 3.549 14.97 3 16 3c.99 0 1.858.219 2.59.654s1.273 1.054 1.656 1.768c.75 1.396.92 3.192.817 4.94-.105 1.775-.5 3.631-1.001 5.245-.498 1.601-1.124 3.038-1.73 3.948-.696 1.043-1.663 1.562-2.688 1.418-.941-.132-1.672-.793-2.038-1.526-.391-.782-.572-1.655-.915-2.458-.085-.2-.379-1.003-.69-.989-.375 0-.577.72-.692.99-.343.802-.523 1.675-.914 2.457-.367.733-1.098 1.394-2.038 1.526-1.026.144-1.993-.375-2.689-1.418-.606-.91-1.232-2.347-1.73-3.948-.501-1.614-.896-3.47-1-5.244-.104-1.75.066-3.545.816-4.941.383-.714.924-1.333 1.656-1.768m.438 11.36c.47 1.51 1.027 2.746 1.484 3.431.152.228.424.592.747.547.164-.023.393-.172.527-.44.371-.742.537-1.585.864-2.35.2-.469.468-.986.84-1.399.387-.428.947-.803 1.69-.803s1.303.375 1.69.803c.372.413.64.93.84 1.4.327.764.493 1.607.865 2.35.133.267.362.416.527.44.322.044.594-.32.746-.548.457-.685 1.015-1.92 1.484-3.431.465-1.498.821-3.192.915-4.77.094-1.601-.09-2.958-.583-3.876-.238-.443-.54-.772-.916-.995S16.69 5 16 5c-.39 0-.777.21-1.51.641-.595.352-1.454.859-2.49.859-1.066 0-1.944-.537-2.541-.889C8.762 5.201 8.382 5 8 5c-.689 0-1.192.15-1.568.373q-.56.333-.916.995c-.493.918-.677 2.275-.582 3.877.093 1.577.449 3.271.914 4.769"/>
</G>
</Svg>);
});
Icon.displayName = 'DentalLine';
/**
* MingCute Icon: Dental Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const DentalLine = Icon;