Skip to content

Commit

Permalink
release: 1.0.1 (#7)
Browse files Browse the repository at this point in the history
* release: 1.0.1

* fix: Updated Unicons Package

* Auto-committed changes by create-pull-request action
  • Loading branch information
tarunmangukiya authored May 23, 2020
1 parent dcab65d commit fa09987
Show file tree
Hide file tree
Showing 18 changed files with 454 additions and 32 deletions.
30 changes: 30 additions & 0 deletions icons/uil-bing.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilBing = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M10.1,8.6l1.7,4.3l2.8,1.3L9,17.5V3.4L5,2v17.8L9,22l10-5.8v-4.5L10.1,8.6z" />
</Svg>
);
};

UilBing.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilBing.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilBing;
30 changes: 30 additions & 0 deletions icons/uil-css3-simple.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilCss3Simple = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M20.772,3.36426A1.00062,1.00062,0,0,0,20,3H6A1,1,0,0,0,6,5H18.78613l-.78094,4H5a1,1,0,0,0,0,2H17.61475l-1.1626,5.95508-6.32324,1.99658L4.71875,17.25244l.20361-1.06494a1.00015,1.00015,0,0,0-1.96484-.375L2.5874,17.75244A1.00059,1.00059,0,0,0,3.27,18.894L9.83008,20.9541a1.00175,1.00175,0,0,0,.60107-.00049l7.18994-2.27a1.00064,1.00064,0,0,0,.68018-.7622l2.68018-13.73A1.00008,1.00008,0,0,0,20.772,3.36426Z" />
</Svg>
);
};

UilCss3Simple.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilCss3Simple.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilCss3Simple;
30 changes: 30 additions & 0 deletions icons/uil-discord.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilDiscord = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M10.13831,10.62982h-.00013a1.05288,1.05288,0,1,0,.00013,0Zm3.75427,0a1.14582,1.14582,0,1,0,1.04907,1.14166A1.09586,1.09586,0,0,0,13.89258,10.62982Zm4.99878-8.6297H5.10864A2.11364,2.11364,0,0,0,3,4.119V18.02527A2.11368,2.11368,0,0,0,5.10864,20.1441H16.77258l-.54516-1.90289,1.31653,1.224,1.24462,1.152L21,22.57153V4.119A2.11364,2.11364,0,0,0,18.89136,2.00012ZM14.92114,15.43323v.00006s-.37036-.44232-.67895-.83319a3.2459,3.2459,0,0,0,1.86181-1.224,5.87837,5.87837,0,0,1-1.18286.60681,6.76974,6.76974,0,0,1-1.49145.44232,7.206,7.206,0,0,1-2.66394-.01025,8.64456,8.64456,0,0,1-1.51209-.44226,6.03735,6.03735,0,0,1-.75085-.34973c-.03089-.02063-.06165-.03089-.09253-.05146a.14171.14171,0,0,1-.04114-.03082c-.18506-.10284-.28809-.17487-.28809-.17487A3.19975,3.19975,0,0,0,9.8811,14.57953c-.30847.39093-.68908.8537-.68908.8537a3.72892,3.72892,0,0,1-3.13709-1.56342A13.775,13.775,0,0,1,7.536,7.87323a5.08641,5.08641,0,0,1,2.89026-1.08l.10278.12348A6.93762,6.93762,0,0,0,7.824,8.2641s.22632-.12341.60682-.29828a7.722,7.722,0,0,1,2.335-.64795,1.00465,1.00465,0,0,1,.17492-.02063,8.702,8.702,0,0,1,2.07764-.02051,8.384,8.384,0,0,1,3.096.98737,6.84576,6.84576,0,0,0-2.561-1.30628l.14392-.16449a5.08575,5.08575,0,0,1,2.89026,1.08,13.77368,13.77368,0,0,1,1.4812,5.99652A3.75972,3.75972,0,0,1,14.92114,15.43323Z" />
</Svg>
);
};

UilDiscord.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilDiscord.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilDiscord;
30 changes: 30 additions & 0 deletions icons/uil-draggabledots.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilDraggabledots = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M8.5,10a2,2,0,1,0,2,2A2,2,0,0,0,8.5,10Zm0,7a2,2,0,1,0,2,2A2,2,0,0,0,8.5,17Zm7-10a2,2,0,1,0-2-2A2,2,0,0,0,15.5,7Zm-7-4a2,2,0,1,0,2,2A2,2,0,0,0,8.5,3Zm7,14a2,2,0,1,0,2,2A2,2,0,0,0,15.5,17Zm0-7a2,2,0,1,0,2,2A2,2,0,0,0,15.5,10Z" />
</Svg>
);
};

UilDraggabledots.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilDraggabledots.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilDraggabledots;
30 changes: 30 additions & 0 deletions icons/uil-file-graph.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilFileGraph = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm5.21045,2.38623-1.67334,2.15186-.86816-.78125a.9997.9997,0,0,0-1.44971.11865l-2,2.5a.9998.9998,0,1,0,1.56152,1.249l1.33789-1.67236.87891.791a.99989.99989,0,0,0,1.45849-.12939l2.3335-3a1.00005,1.00005,0,0,0-1.5791-1.22754Zm5.7771-3.44794a1.0088,1.0088,0,0,0-.27936-.64373l-.00146-.0019L13.70734,2.29327l-.00183-.00146a.99022.99022,0,0,0-.28608-.19281c-.0299-.014-.061-.02191-.09246-.033a.98253.98253,0,0,0-.26667-.05383C13.03925,2.01086,13.02136,2,13,2H7A3.00328,3.00328,0,0,0,4,5V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V9C20,8.97809,19.989,8.95984,19.98755,8.93829ZM14,5.41406,16.58594,8H15a1.0013,1.0013,0,0,1-1-1ZM18,19a1.0013,1.0013,0,0,1-1,1H7a1.0013,1.0013,0,0,1-1-1V5A1.0013,1.0013,0,0,1,7,4h5V7a3.00328,3.00328,0,0,0,3,3h3Z" />
</Svg>
);
};

UilFileGraph.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilFileGraph.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilFileGraph;
30 changes: 30 additions & 0 deletions icons/uil-html5-alt.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilHtml5Alt = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M21.46777,2.3252A1.00007,1.00007,0,0,0,20.73,2H3.27a1.00039,1.00039,0,0,0-.99609,1.08887l1.52,17a.99944.99944,0,0,0,.72851.87451l7.2002,2A.99628.99628,0,0,0,11.99023,23a1.01206,1.01206,0,0,0,.26709-.03613l7.21973-2a1.00055,1.00055,0,0,0,.729-.875l1.52-17A1,1,0,0,0,21.46777,2.3252Zm-3.19238,16.896L11.99072,20.9624,5.72461,19.22168,4.36328,4H19.63672ZM7.81982,13h6.895l-.32714,3.271-2.56788.917L8.65625,16.05811a1.00017,1.00017,0,1,0-.67285,1.88378l3.5,1.25a1.00291,1.00291,0,0,0,.67285,0l3.5-1.25a1.00044,1.00044,0,0,0,.65869-.84228l.5-5A1.00064,1.00064,0,0,0,15.81982,11H8.72461L8.4248,8h7.895a1,1,0,0,0,0-2h-9a1.00064,1.00064,0,0,0-.99511,1.09961l.5,5A1.00012,1.00012,0,0,0,7.81982,13Z" />
</Svg>
);
};

UilHtml5Alt.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilHtml5Alt.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilHtml5Alt;
30 changes: 30 additions & 0 deletions icons/uil-html5.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilHtml5 = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M3.1825,2.00012,4.78735,20.00079l7.20191,1.99933,7.22168-2.00207L20.8175,2.00012ZM17.32507,7.88739H8.87683l.20178,2.26074h8.04554l-.60584,6.778L12,18.17834v.00043l-.01013.00275L7.46753,16.92615,7.1582,13.45972H9.37439l.1571,1.76074,2.45874.66388.00208-.00049v-.00018l2.46228-.66461.25635-2.86323H7.05957L6.46411,5.67969h11.0586Z" />
</Svg>
);
};

UilHtml5.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilHtml5.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilHtml5;
30 changes: 30 additions & 0 deletions icons/uil-lira-sign.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilLiraSign = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M18,12a1,1,0,0,0-1,1,7.00787,7.00787,0,0,1-7,7V11.13538l5.2168-1.15931a.99986.99986,0,0,0-.4336-1.95214L10,9.08685V7.13538l5.2168-1.15931a.99986.99986,0,1,0-.4336-1.95214L10,5.08685V3A1,1,0,0,0,8,3V5.53131l-2.2168.49262a.99986.99986,0,1,0,.4336,1.95214L8,7.57983V9.53131l-2.2168.49262a.99986.99986,0,1,0,.4336,1.95214L8,11.57983V21a1,1,0,0,0,1,1h1a9.01047,9.01047,0,0,0,9-9A1,1,0,0,0,18,12Z" />
</Svg>
);
};

UilLiraSign.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilLiraSign.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilLiraSign;
30 changes: 30 additions & 0 deletions icons/uil-programming-language.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilProgrammingLanguage = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M22,3l-3,15.1l-9.1,3l-7.9-3L2.8,14h3.4l-0.4,1.7l4.8,1.8l5.5-1.8l0.8-3.8H3.2l0.7-3.4h13.6L18,6.4H4.3L5,3H22z" />
</Svg>
);
};

UilProgrammingLanguage.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilProgrammingLanguage.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilProgrammingLanguage;
2 changes: 1 addition & 1 deletion icons/uil-shopping-cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const UilShoppingCart = props => {
fill={color}
{...otherProps}
>
<Path d="M21,16H7a1,1,0,0,1,0-2H17.44a3,3,0,0,0,2.91-2.27L22,5.24a1,1,0,0,0-.18-.86A1,1,0,0,0,21,4H6.76A3,3,0,0,0,3.94,2H3A1,1,0,0,0,3,4h.94a1,1,0,0,1,1,.76L5,5.24H5L6.73,12A3,3,0,0,0,7,18h.18a3,3,0,1,0,5.64,0h2.36a3,3,0,1,0,5.64,0H21a1,1,0,0,0,0-2ZM19.72,6l-1.31,5.24a1,1,0,0,1-1,.76H8.78L7.28,6ZM10,20a1,1,0,1,1,1-1A1,1,0,0,1,10,20Zm8,0a1,1,0,1,1,1-1A1,1,0,0,1,18,20Z" />
<Path d="M8.5,19A1.5,1.5,0,1,0,10,20.5,1.5,1.5,0,0,0,8.5,19ZM19,16H7a1,1,0,0,1,0-2h8.49121A3.0132,3.0132,0,0,0,18.376,11.82422L19.96143,6.2749A1.00009,1.00009,0,0,0,19,5H6.73907A3.00666,3.00666,0,0,0,3.92139,3H3A1,1,0,0,0,3,5h.92139a1.00459,1.00459,0,0,1,.96142.7251l.15552.54474.00024.00506L6.6792,12.01709A3.00006,3.00006,0,0,0,7,18H19a1,1,0,0,0,0-2ZM17.67432,7l-1.2212,4.27441A1.00458,1.00458,0,0,1,15.49121,12H8.75439l-.25494-.89221L7.32642,7ZM16.5,19A1.5,1.5,0,1,0,18,20.5,1.5,1.5,0,0,0,16.5,19Z" />
</Svg>
);
};
Expand Down
8 changes: 4 additions & 4 deletions icons/uil-exit.js → icons/uil-signout.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilExit = props => {
const UilSignout = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
Expand All @@ -17,14 +17,14 @@ const UilExit = props => {
);
};

UilExit.propTypes = {
UilSignout.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilExit.defaultProps = {
UilSignout.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilExit;
export default UilSignout;
30 changes: 30 additions & 0 deletions icons/uil-slider-h-range.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilSliderHRange = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M21,11H19.81573a2.98208,2.98208,0,0,0-5.63146,0H9.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2H4.18433a2.982,2.982,0,0,0,5.6314,0h4.3686a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2ZM7,13a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,7,13Zm10,0a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,17,13Z" />
</Svg>
);
};

UilSliderHRange.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilSliderHRange.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilSliderHRange;
30 changes: 30 additions & 0 deletions icons/uil-slider-h.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";

const UilSliderH = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M21,11H17.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2h9.18433a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2Zm-6,2a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,15,13Z" />
</Svg>
);
};

UilSliderH.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};

UilSliderH.defaultProps = {
color: "currentColor",
size: "24"
};

export default UilSliderH;
Loading

0 comments on commit fa09987

Please sign in to comment.