UNPKG

@kojon74/react-native-unicons

Version:

Unicons - 4,500+ vector icons as easy to use vector React Native Components

31 lines (26 loc) 1.83 kB
import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; const UilGitlab = props => { const { color, size, ...otherProps } = props; return ( <Svg width={size} height={size} viewBox="0 0 24 24" fill={color} {...otherProps} > <Path d="m21.94 12.865-1.066-3.28.001.005v-.005l-2.115-6.51a.833.833 0 0 0-.799-.57.822.822 0 0 0-.788.576l-2.007 6.178H8.834L6.824 3.08a.822.822 0 0 0-.788-.575H6.03a.839.839 0 0 0-.796.575L3.127 9.584l-.002.006.001-.005-1.069 3.28a1.195 1.195 0 0 0 .435 1.34l9.229 6.705.004.003.012.008-.011-.008.002.001.001.001a.466.466 0 0 0 .045.028l.006.004.004.002.003.001h.002l.005.003.025.01.023.01h.001l.004.002.005.002h.002l.006.002h.003c.011.004.022.006.034.009l.013.003h.002l.005.002.007.001h.007a.467.467 0 0 0 .066.006h.001a.469.469 0 0 0 .067-.005h.007l.007-.002.004-.001h.002l.014-.004.034-.008h.002l.006-.003h.002l.005-.002.004-.001h.001l.025-.011.023-.01.005-.002h.002l.003-.002.004-.002.007-.004a.468.468 0 0 0 .044-.027l.004-.003.005-.003 9.23-6.706a1.195 1.195 0 0 0 .434-1.339Zm-3.973-9.18 1.81 5.574h-3.62Zm-11.937 0L7.843 9.26h-3.62Zm-2.984 9.757a.255.255 0 0 1-.092-.285l.794-2.438 5.822 7.464Zm1.494-3.24h3.61l2.573 7.927Zm7.165 10.696-.006-.005-.011-.01-.02-.018.002.001.002.002a.473.473 0 0 0 .043.037l.002.002Zm.293-1.894-1.514-4.665-1.344-4.138h5.72Zm.31 1.88-.01.008-.002.001-.005.005-.012.009.002-.002a.455.455 0 0 0 .043-.036l.001-.002.002-.002ZM15.851 10.2h3.61l-.74.947-5.447 6.98Zm5.1 3.241-6.523 4.74 5.824-7.463.791 2.437a.255.255 0 0 1-.092.286Z" /> </Svg> ); }; UilGitlab.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; UilGitlab.defaultProps = { color: "currentColor", size: "24" }; export default UilGitlab;