UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.81 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"> <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="M12 1.5c1.07 0 1.852.652 2.346 1.279.507.643.898 1.481 1.198 2.383.607 1.819.956 4.236.956 6.838 0 2.602-.35 5.02-.956 6.838-.3.902-.691 1.74-1.198 2.383-.494.627-1.275 1.279-2.346 1.279-1.501 0-2.43-1.243-2.929-2.19-.565-1.073-.979-2.495-1.239-4.065a1.5 1.5 0 1 1 2.96-.49c.23 1.393.572 2.471.933 3.157.066.125.125.225.178.305l.096.136c.209-.27.46-.747.7-1.463.479-1.439.801-3.521.801-5.89 0-2.369-.322-4.451-.802-5.89-.238-.715-.49-1.191-.698-1.461-.093.12-.207.3-.332.553a6.895 6.895 0 0 0-.305.73 1.5 1.5 0 0 1 .373 2.647l-1.611 1.13a1.495 1.495 0 0 1-1.099.276 1.495 1.495 0 0 1-.987-.58L6.86 7.72a1.5 1.5 0 0 1 1.522-2.33c.174-.554.372-1.063.595-1.514.286-.58.647-1.137 1.107-1.567C10.552 1.871 11.2 1.5 12 1.5m0 9v3H5a1.5 1.5 0 0 1 0-3zm6 0h1a1.5 1.5 0 0 1 0 3h-1z"/> </G> </Svg>); }; Icon.displayName = 'RotateYFill'; /** * MingCute Icon: Rotate Y Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const RotateYFill = memo(Icon);