@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.95 kB
JavaScript
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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.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-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.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.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M18.089 2.624a1 1 0 0 0-1.099.155c-.1.089-.192.186-.282.285-.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.363.039.14.082.27.125.389-.787.548-1.193 1.344-1.403 1.94a5.34 5.34 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-.99.27-.232.482-.462.625-.635.086-.102.17-.208.244-.32a1.004 1.004 0 0 0-.002-1.111l-.046-.067c.19-.066.382-.151.57-.26.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.791 4.791 0 0 0-.498-1.19 1.009 1.009 0 0 0-1.007-.47l-.071.013c.032-.27.034-.558-.008-.857-.151-1.077-.805-1.843-1.324-2.301a4.793 4.793 0 0 0-1.066-.728m-12.178 0a1 1 0 0 1 1.099.155c.1.089.192.186.282.285.151.167.35.407.542.708.373.583.79 1.5.638 2.577-.151 1.077-.804 1.844-1.324 2.301a5.31 5.31 0 0 1-.418.333c.316.89.193 1.761.025 2.363-.039.14-.082.27-.125.389.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.37 5.37 0 0 1-.625-.635 3.791 3.791 0 0 1-.244-.32 1.004 1.004 0 0 1 .002-1.111l.046-.067a3.284 3.284 0 0 1-.57-.26c-.943-.544-1.409-1.437-1.639-2.09a5.363 5.363 0 0 1-.197-.72l-.047-.264-.024-.194a1 1 0 0 1 .547-1.044l.048-.022a3.317 3.317 0 0 1-.504-.774c-.46-.986-.329-1.984-.143-2.651.115-.411.276-.824.498-1.19.208-.343.612-.53 1.007-.47l.071.013a3.307 3.307 0 0 1 .008-.857c.151-1.077.804-1.843 1.324-2.301.32-.283.68-.541 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 = memo(Icon);