UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.67 kB
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 3c.976 0 1.808.493 2.382.833.486.29 1.03.667 1.618.667s1.132-.378 1.618-.667C14.193 3.494 15.025 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.458q-.256-.593-.485-.845c-.16-.176-.257-.171-.411 0q-.23.252-.486.845c-.343.803-.523 1.676-.914 2.458-.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.768"/> </G> </Svg>); }); Icon.displayName = 'DentalFill'; /** * MingCute Icon: Dental Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const DentalFill = Icon;