UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.77 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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.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.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M18.089 2.624a1 1 0 0 0-1.099.155q-.149.135-.282.285c-.151.167-.35.407-.542.708-.373.583-.79 1.5-.638 2.577.151 1.077.804 1.844 1.324 2.301.145.129.288.24.418.333-.316.89-.193 1.761-.025 2.363q.06.21.125.389c-.787.548-1.193 1.344-1.403 1.94a5 5 0 0 0-.185.658c-.865.125-1.548.574-1.995.958-.328.28-.654.61-.885.979-.554.887-.615 1.996-.327 2.936.292.952.99 1.87 2.109 2.243a1 1 0 0 0 .74-1.855l-.108-.043c-.312-.104-.573-.347-.736-.692.46.25 1.023.44 1.67.44 1.088 0 1.938-.54 2.463-.99a5.3 5.3 0 0 0 .869-.955 1 1 0 0 0-.002-1.111l-.046-.067q.287-.098.57-.26c.943-.544 1.409-1.437 1.639-2.09.094-.269.157-.518.197-.72l.047-.264.024-.194.007-.083a1 1 0 0 0-.555-.96l-.047-.023c.192-.221.365-.477.504-.774.46-.986.329-1.984.143-2.651a4.8 4.8 0 0 0-.498-1.19 1.01 1.01 0 0 0-1.007-.47l-.071.013c.032-.27.034-.558-.008-.857-.151-1.077-.805-1.843-1.324-2.301a4.8 4.8 0 0 0-1.066-.728m-12.178 0a1 1 0 0 1 1.099.155q.149.135.282.285c.151.167.35.407.542.708.373.583.79 1.5.638 2.577-.151 1.077-.804 1.844-1.324 2.301a5 5 0 0 1-.418.333c.316.89.193 1.761.025 2.363q-.06.21-.125.389c.786.548 1.193 1.344 1.403 1.94.085.243.144.468.185.658.865.125 1.548.574 1.995.958.328.28.654.61.885.979.554.887.615 1.996.327 2.936-.292.952-.99 1.87-2.109 2.243a1 1 0 0 1-.74-1.855l.108-.043c.312-.104.573-.347.736-.692-.46.25-1.023.44-1.67.44-1.088 0-1.937-.54-2.463-.99a5.4 5.4 0 0 1-.625-.635 4 4 0 0 1-.244-.32 1 1 0 0 1 .002-1.111l.046-.067a3.3 3.3 0 0 1-.57-.26c-.943-.544-1.409-1.437-1.639-2.09a5 5 0 0 1-.197-.72l-.047-.264-.024-.194a1 1 0 0 1 .547-1.044l.048-.022a3.3 3.3 0 0 1-.504-.774c-.46-.986-.329-1.984-.143-2.651a4.8 4.8 0 0 1 .498-1.19 1.01 1.01 0 0 1 1.007-.47l.071.013a3.3 3.3 0 0 1 .008-.857c.151-1.077.804-1.843 1.324-2.301a4.8 4.8 0 0 1 1.066-.728"/> </G> </Svg>); }); Icon.displayName = 'LaurelWreathFill'; /** * MingCute Icon: Laurel Wreath Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const LaurelWreathFill = Icon;