UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.87 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="M5.631 7.23a1.5 1.5 0 0 1 1.967-.446l.122.077 1.566 1.097a1.497 1.497 0 0 1 .5 2.048l-.078.118-1.128 1.612a1.5 1.5 0 0 1-2.648-.373 6.86 6.86 0 0 0-.73.305 3.31 3.31 0 0 0-.553.332c.27.209.746.46 1.461.698 1.439.48 3.521.802 5.89.802 2.369 0 4.451-.322 5.89-.802.716-.239 1.193-.49 1.462-.7l-.135-.095a3.733 3.733 0 0 0-.305-.178c-.686-.36-1.764-.702-3.157-.933a1.5 1.5 0 0 1 .49-2.96c1.57.26 2.992.674 4.066 1.24.946.498 2.189 1.427 2.189 2.928 0 1.07-.652 1.852-1.279 2.346-.643.507-1.481.898-2.383 1.198-1.819.607-4.236.956-6.838.956-2.602 0-5.02-.35-6.838-.956-.902-.3-1.74-.691-2.383-1.198C2.152 13.852 1.5 13.07 1.5 12c0-.8.371-1.448.808-1.916.43-.46.986-.82 1.567-1.107.451-.223.96-.421 1.514-.595A1.496 1.496 0 0 1 5.63 7.23ZM12 3.5a1.5 1.5 0 0 1 1.493 1.356L13.5 5v7h-3V5A1.5 1.5 0 0 1 12 3.5M10.5 18v1a1.5 1.5 0 0 0 3 0v-1z"/> </G> </Svg>); }; Icon.displayName = 'RotateXFill'; /** * MingCute Icon: Rotate X Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const RotateXFill = memo(Icon);