UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.73 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.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="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.838s-.35 5.02-.956 6.838c-.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.157q.099.186.178.305l.096.136c.209-.27.46-.747.7-1.463.479-1.439.801-3.521.801-5.89s-.322-4.451-.802-5.89c-.238-.715-.49-1.191-.698-1.461-.093.12-.207.3-.332.553a7 7 0 0 0-.305.73 1.5 1.5 0 0 1 .373 2.647l-1.611 1.13a1.5 1.5 0 0 1-1.099.276 1.5 1.5 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 = Icon;