UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.29 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"> <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="m13.064 6.685.745-.306c.605-.24 1.387-.485 2.31-.33 1.891.318 3.195 1.339 3.972 2.693.3.522.058 1.21-.502 1.429a2.501 2.501 0 0 0 .133 4.706c.518.17.81.745.64 1.263-.442 1.342-1.078 2.581-1.831 3.581-.744.988-1.652 1.808-2.663 2.209-.672.266-1.39.16-2.078-.013l-.408-.11-.585-.163-.319-.079a2.3 2.3 0 0 0-.478-.067c-.13 0-.285.024-.478.067l-.32.08-.787.218c-.748.203-1.544.36-2.283.067-1.273-.504-2.396-1.68-3.245-3.067a13.5 13.5 0 0 1-1.784-4.986c-.227-1.554-.104-3.299.615-4.775.74-1.521 2.096-2.705 4.163-3.053.84-.141 1.562.048 2.14.265l.331.13.584.241c.4.157.715.249 1.064.249.348 0 .664-.092 1.064-.249M10.19 8.542l-.348-.143c-.731-.306-1.138-.46-1.63-.378-1.392.235-2.221.982-2.696 1.957-.496 1.018-.62 2.332-.434 3.61.228 1.558.789 3.05 1.511 4.232.738 1.205 1.571 1.972 2.275 2.25.24.095.585.02.905-.078l.443-.146.122-.038.433-.12c.386-.1.821-.19 1.229-.19.407 0 .843.09 1.229.19l.433.12.122.038.443.146c.32.098.665.173.905.078.547-.216 1.183-.732 1.8-1.552.46-.61.88-1.352 1.223-2.177A4.5 4.5 0 0 1 16 12.5c0-1.447.682-2.732 1.74-3.555-.473-.45-1.107-.781-1.952-.924-.443-.074-.817.043-1.42.291l-.21.087c-.541.227-1.276.535-2.158.535-.705 0-1.317-.197-1.81-.392m1.578-5.774c.976-.977 2.475-1.061 2.828-.707.354.353.27 1.852-.707 2.828-.976.976-2.475 1.06-2.828.707-.354-.353-.27-1.852.707-2.828"/> </G> </Svg>); }); Icon.displayName = 'AppleLine'; /** * MingCute Icon: Apple Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const AppleLine = Icon;