UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.75 kB
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="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.667.588 0 1.132-.378 1.618-.667C14.193 3.494 15.025 3 16 3c.99 0 1.858.219 2.59.654.732.435 1.273 1.054 1.656 1.768.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-.17-.396-.333-.676-.485-.845-.16-.176-.257-.171-.411 0-.153.169-.316.449-.486.845-.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 = memo(Icon);