UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2 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 2c.797 0 1.625.382 2.351.886.753.522 1.514 1.257 2.192 2.141C17.897 6.791 19 9.25 19 12s-1.103 5.209-2.457 6.973c-.678.884-1.439 1.619-2.192 2.141-.726.504-1.554.886-2.351.886s-1.625-.382-2.351-.886c-.753-.522-1.514-1.257-2.192-2.141C6.103 17.209 5 14.75 5 12s1.103-5.209 2.457-6.973c.678-.884 1.439-1.619 2.192-2.141C10.375 2.382 11.203 2 12 2m0 17c-.502 0-.975.123-1.391.341l.18.13c.586.407 1.008.529 1.211.529s.625-.122 1.211-.529l.18-.13A3 3 0 0 0 12 19m2.85-12.891A5 5 0 0 1 12 7a5 5 0 0 1-2.645-.756L9.15 6.11l-.107.136C7.897 7.738 7 9.78 7 12c0 2.103.805 4.046 1.864 5.515l.18.24.106.137A5 5 0 0 1 12 17c.97 0 1.878.277 2.644.756l.206.136.107-.137C16.103 16.262 17 14.22 17 12c0-2.103-.805-4.046-1.864-5.515l-.18-.24zM12 8a1 1 0 0 1 1 1 1 1 0 0 1 .117 1.993L13 11v2a1 1 0 1 1 0 2 1 1 0 1 1-2 0 1 1 0 0 1-.117-1.993L11 13v-2a1 1 0 1 1 0-2 1 1 0 0 1 1-1m0-4c-.203 0-.625.122-1.211.529l-.18.13c.416.218.889.341 1.391.341s.975-.123 1.391-.34l-.18-.131C12.625 4.122 12.203 4 12 4"/> </G> </Svg>); }); Icon.displayName = 'AmericanFootballLine'; /** * MingCute Icon: American Football Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const AmericanFootballLine = Icon;