Skip to content

Commit

Permalink
Merge pull request #67 from icons-pack/canary
Browse files Browse the repository at this point in the history
v3.5.0
  • Loading branch information
wootsbot authored Jul 3, 2020
2 parents 927ee57 + 8699db8 commit 280a3ee
Show file tree
Hide file tree
Showing 14 changed files with 349 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# react-simple-icons

This package provides the [Simple Icons 2.17.1](https://github.com/simple-icons/simple-icons/releases/tag/2.17.1) packaged as a set of [React](https://facebook.github.io/react/) components.
This package provides the [Simple Icons 2.19.0](https://github.com/simple-icons/simple-icons/releases/tag/2.19.0) packaged as a set of [React](https://facebook.github.io/react/) components.

<a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
<img src="https://img.shields.io/npm/v/@icons-pack/react-simple-icons?color=CB061D&style=flat-square" alt="www.npmjs.com!" />
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@icons-pack/react-simple-icons",
"version": "3.4.0",
"version": "3.5.0",
"private": false,
"description": "This package provides the Simple Icons packaged as a set of React components.",
"author": "Jorge Luis Calleja <[email protected]>",
Expand Down Expand Up @@ -84,7 +84,7 @@
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"signale": "^1.4.0",
"simple-icons": "^2.17.1",
"simple-icons": "^2.19.0",
"uppercamelcase": "^3.0.0"
}
}
35 changes: 35 additions & 0 deletions src/components/Ansys.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';

const Ansys = forwardRef(function Ansys({ color = 'currentColor', size = 24, title = 'Ansys', ...others }, ref) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox="0 0 24 24"
ref={ref}
{...others}>
<title>{title}</title>
<path d="M19.0424 10.089l-.993 2.4233-.9932-2.4233h-1.227l1.6066 3.921-.7039 1.7179h1.227l2.3104-5.639zm4.667 2.1272c-.1936-.1936-.5004-.3377-.9209-.4332l-.6984-.1599c-.1678-.0447-.2858-.0923-.3531-.143-.0673-.0506-.101-.1207-.101-.2101 0-.1232.0562-.2186.1683-.2859.112-.0673.2664-.101.4628-.101.426 0 .858.1513 1.2954.4542l.3362-.841c-.2241-.1627-.4767-.2886-.757-.3784a2.8304 2.8304 0 0 0-.8663-.1347c-.3476 0-.6576.0562-.9292.1683-.2724.112-.4826.2665-.631.4624-.1485.1964-.223.4237-.223.6814 0 .3254.0939.582.282.7696.1876.188.4806.3267.8789.4165l.673.1517c.2075.0447.3492.0954.4248.1512.076.0562.1136.1346.1136.2356 0 .1124-.0546.2007-.1639.2648-.1092.0645-.262.0966-.4584.0966-.2748 0-.5468-.042-.816-.1259-.2692-.0843-.5163-.2019-.7403-.3531l-.3366.8745c.23.1628.5032.2875.8204.3746.3167.0867.6655.1302 1.0471.1302.555 0 .991-.1136 1.3081-.3408.3167-.2273.4751-.5397.4751-.938-.0008-.331-.0974-.593-.2906-.7866zm-9.3815-.4332l-.698-.1599c-.1682-.0447-.2862-.0923-.3535-.143-.0669-.0506-.1006-.1207-.1006-.2101 0-.1232.0558-.2186.168-.2859.112-.0673.2664-.101.4627-.101.426 0 .858.1513 1.2955.4542l.3365-.841c-.2245-.1627-.4767-.2886-.757-.3784a2.8323 2.8323 0 0 0-.8663-.1347c-.348 0-.6576.0562-.9296.1683-.272.112-.4822.2665-.6306.4624-.1489.1964-.223.4237-.223.6814 0 .3254.0943.582.282.7696.1876.188.481.3267.8793.4165l.673.1517c.2075.0447.3488.0954.4248.1512.0756.0562.1137.1346.1137.2356 0 .1124-.0546.2007-.164.2648-.1092.0645-.2624.0966-.4584.0966-.2748 0-.5468-.042-.816-.1259-.2688-.0843-.5159-.2019-.7403-.3531l-.3362.8745c.2297.1628.5032.2875.82.3746.3167.0867.6659.1302 1.0471.1302.5551 0 .991-.1136 1.3081-.3408.3168-.2273.4751-.5397.4751-.938 0-.3305-.0966-.593-.2902-.7862-.1944-.194-.5012-.3381-.922-.4336zM9.823 9.9828c-.2918 0-.5539.059-.7863.1766-.2328.1176-.422.2886-.5677.5131v-.5887H7.2325v4.1301h1.27v-2.3133c0-.2803.08-.5048.24-.673.1595-.1683.3713-.2526.635-.2526.219 0 .3797.0645.4838.1936.1037.129.1556.3337.1556.614v2.431h1.27v-2.49c0-.5831-.1207-1.019-.3618-1.308-.2415-.2882-.6089-.4328-1.1022-.4328zM4.4334 8.4594l-.8176 1.9954 1.5381 3.7544h1.7262zm-.3726-.1873H2.4325L0 14.2091h1.6284z" />
</svg>
);
});

Ansys.propTypes = {
/**
* Hex color or color name
*/
color: PropTypes.string,
/**
* The size of the Icon.
*/
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* The title provides an accessible short text description to the SVG
*/
title: PropTypes.string,
};

export default Ansys;
35 changes: 35 additions & 0 deletions src/components/Cypress.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';

const Cypress = forwardRef(function Cypress({ color = 'currentColor', size = 24, title = 'Cypress', ...others }, ref) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox="0 0 24 24"
ref={ref}
{...others}>
<title>{title}</title>
<path d="M11.998 0C5.366 0 0 5.367 0 12a11.992 11.992 0 0 0 12 12c6.633 0 12-5.367 12-12-.001-6.633-5.412-12-12.002-12zM6.37 14.575c.392.523.916.742 1.657.742.35 0 .699-.044 1.004-.175.306-.13.655-.306 1.09-.567l1.223 1.745c-1.003.83-2.138 1.222-3.447 1.222-1.048 0-1.92-.218-2.705-.654a4.393 4.393 0 0 1-1.746-1.92c-.392-.83-.611-1.79-.611-2.925 0-1.09.219-2.094.61-2.923a4.623 4.623 0 0 1 1.748-2.007c.741-.48 1.657-.698 2.661-.698.699 0 1.353.087 1.877.305a5.64 5.64 0 0 1 1.614.96l-1.222 1.658A4.786 4.786 0 0 0 9.12 8.77c-.305-.13-.698-.174-1.048-.174-1.483 0-2.225 1.134-2.225 3.446-.043 1.18.175 2.008.524 2.532H6.37zm12 2.705c-.436 1.353-1.091 2.357-2.008 3.098-.916.743-2.138 1.135-3.665 1.266l-.305-2.05c1.003-.132 1.745-.35 2.225-.7.174-.13.524-.523.524-.523L11.519 6.764h3.01l2.095 8.683 2.226-8.683h2.923L18.37 17.28z" />
</svg>
);
});

Cypress.propTypes = {
/**
* Hex color or color name
*/
color: PropTypes.string,
/**
* The size of the Icon.
*/
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* The title provides an accessible short text description to the SVG
*/
title: PropTypes.string,
};

export default Cypress;
38 changes: 38 additions & 0 deletions src/components/Googlenews.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';

const Googlenews = forwardRef(function Googlenews(
{ color = 'currentColor', size = 24, title = 'Google News', ...others },
ref
) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox="0 0 24 24"
ref={ref}
{...others}>
<title>{title}</title>
<path d="M19.0863 5.6694v-2.875a.6101.6101 0 0 0-.6114-.6073H5.5235a.6101.6101 0 0 0-.6156.6074v2.834l8.3905-3.052a.5938.5938 0 0 1 .7422.3895l.5448 1.4981zM23.582 7.343l-8.8032-2.3683.7518 2.066h5.5837a.6142.6142 0 0 1 .6128.6128v8.795l2.247-8.366a.5924.5924 0 0 0-.3921-.7395zM2.27 7.6535a.6156.6156 0 0 1 .613-.6128h12.1546l-1.2693-3.4905a.5951.5951 0 0 0-.7435-.3827L.3674 7.7748a.5938.5938 0 0 0-.3227.775l2.2253 6.112zm0 0a.6156.6156 0 0 1 .613-.6128h12.1546l-1.2693-3.4905a.5951.5951 0 0 0-.7435-.3827L.3674 7.7748a.5938.5938 0 0 0-.3227.775l2.2253 6.112zM21.2668 21.2a.6142.6142 0 0 1-.6129.6129H3.3445a.6142.6142 0 0 1-.6129-.6129V8.1153a.6142.6142 0 0 1 .6129-.6129h17.3093a.6142.6142 0 0 1 .6129.6129zm-3.0315-3.4196v-1.1958a.0804.0804 0 0 0-.0804-.0803h-5.3726v1.3619h5.3726a.0817.0817 0 0 0 .0804-.0858zm.817-2.5876v-1.2012a.0804.0804 0 0 0-.0803-.0817h-6.1897v1.3619h6.1897a.079.079 0 0 0 .0804-.0817zm-.817-2.5875v-1.2067a.0804.0804 0 0 0-.0804-.0803h-5.3726v1.3619h5.3726a.0817.0817 0 0 0 .0804-.079zm-10.086 1.4395v1.2256h1.7704c-.1457.749-.8049 1.2925-1.7704 1.2925a1.976 1.976 0 0 1 0-3.9495 1.7704 1.7704 0 0 1 1.2529.4903l.9342-.9329a3.1405 3.1405 0 0 0-2.1871-.8525 3.2685 3.2685 0 1 0 0 6.537c1.8889 0 3.1323-1.3279 3.1323-3.1977a3.9576 3.9576 0 0 0-.0518-.6183Z" />
</svg>
);
});

Googlenews.propTypes = {
/**
* Hex color or color name
*/
color: PropTypes.string,
/**
* The size of the Icon.
*/
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* The title provides an accessible short text description to the SVG
*/
title: PropTypes.string,
};

export default Googlenews;
35 changes: 35 additions & 0 deletions src/components/Mini.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';

const Mini = forwardRef(function Mini({ color = 'currentColor', size = 24, title = 'Mini', ...others }, ref) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox="0 0 24 24"
ref={ref}
{...others}>
<title>{title}</title>
<path d="M0 9.1723h7.5563c.48-.749 1.1108-1.3428 1.8935-1.7828.7822-.4393 1.6314-.659 2.5484-.659.9163 0 1.7673.2203 2.5526.6615.7852.4412 1.4154 1.035 1.8892 1.7803H24l-.7483.7483h-6.3994a4.278 4.278 0 0 1 .299.8886h5.2333l-.7483.749h-4.3692c.0129.1932.019.3396.019.4393 0 .0997-.0061.2468-.019.44h3.4904l-.7489.7483h-2.8572a4.0661 4.0661 0 0 1-.299.8844h2.264l-.7582.7483H16.44c-.4738.7464-1.104 1.3421-1.8892 1.7858-.7853.4437-1.6363.6652-2.5526.6652-.917 0-1.7662-.2209-2.5484-.6627-.7827-.4425-1.4135-1.0388-1.8935-1.7883H5.6418l-.744-.7483h2.2597a4.093 4.093 0 0 1-.296-.8844H4.0062l-.7582-.7483h3.4898c-.0129-.1932-.019-.3403-.019-.44 0-.0997.0061-.2461.019-.4393h-4.36l-.7581-.749h5.2418a4.306 4.306 0 0 1 .296-.8886H.7483zm7.8437 1.0714c-.2382.5581-.3575 1.1428-.3575 1.7538 0 .6111.1193 1.1963.3575 1.7545.2381.5575.5594 1.0394.963 1.4443.4038.405.8838.7268 1.44.9662.5564.2393 1.1404.3587 1.7515.3587.6104 0 1.195-.1194 1.7532-.3587.5575-.2394 1.0388-.5613 1.4424-.9662.4037-.405.725-.8868.9656-1.4443.24-.5582.36-1.1434.36-1.7545 0-.611-.12-1.1957-.36-1.7538-.2406-.5582-.5619-1.0388-.9656-1.4425-.4036-.403-.8849-.7243-1.4424-.9637-.5582-.2393-1.1428-.3587-1.7532-.3587-.6111 0-1.1951.1194-1.7514.3587-.5563.2394-1.0363.5607-1.44.9637-.4037.4037-.725.8843-.9631 1.4425zm.5538 2.9421h.4677l-.0135-1.7729.5661 1.773.52-.0032.5557-1.7606v1.7637h.4991v-2.3766l-.7028-.0006-.603 1.8954-.6148-1.893-.6745-.0018zm3.133 0h.4953v-2.3766h-.4953zm1.0332 0h.477v-1.712l.9488 1.712h.5754v-2.3766h-.4677v1.7219l-.9489-1.7219h-.5846zm2.5483 0h.4862v-2.3766h-.4862z" />
</svg>
);
});

Mini.propTypes = {
/**
* Hex color or color name
*/
color: PropTypes.string,
/**
* The size of the Icon.
*/
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* The title provides an accessible short text description to the SVG
*/
title: PropTypes.string,
};

export default Mini;
35 changes: 35 additions & 0 deletions src/components/Nestjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions src/components/Qt.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';

const Qt = forwardRef(function Qt({ color = 'currentColor', size = 24, title = 'Qt', ...others }, ref) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox="0 0 24 24"
ref={ref}
{...others}>
<title>{title}</title>
<path d="M21.693 3.162H3.33L0 6.49v14.348h20.671L24 17.51V3.162zM12.785 18.4l-1.562.728-1.35-2.217c-.196.057-.499.09-.924.09-1.579 0-2.683-.425-3.305-1.276-.622-.85-.932-2.2-.932-4.033 0-1.84.319-3.206.949-4.098.63-.892 1.726-1.341 3.288-1.341 1.562 0 2.658.441 3.28 1.333.63.883.94 2.25.94 4.098 0 1.219-.13 2.2-.384 2.945-.261.752-.679 1.325-1.268 1.718zm4.736-1.587c-.858 0-1.447-.196-1.766-.59-.32-.392-.483-1.136-.483-2.232v-3.534H14.11V9.051h1.162V6.843h1.644V9.05h2.094v1.415h-2.094v3.346c0 .622.05 1.03.14 1.227.09.204.326.303.695.303l1.243-.05.073 1.326c-.67.13-1.186.196-1.546.196zm-8.58-9.08c-.95 0-1.604.311-1.963.94-.352.63-.532 1.629-.532 3.011 0 1.374.172 2.364.515 2.953.344.589 1.006.892 1.98.892.973 0 1.628-.295 1.971-.876.335-.58.507-1.57.507-2.953 0-1.39-.172-2.396-.523-3.026-.352-.63-1.006-.94-1.955-.94Z" />
</svg>
);
});

Qt.propTypes = {
/**
* Hex color or color name
*/
color: PropTypes.string,
/**
* The size of the Icon.
*/
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* The title provides an accessible short text description to the SVG
*/
title: PropTypes.string,
};

export default Qt;
38 changes: 38 additions & 0 deletions src/components/Sennheiser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';

const Sennheiser = forwardRef(function Sennheiser(
{ color = 'currentColor', size = 24, title = 'Sennheiser', ...others },
ref
) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox="0 0 24 24"
ref={ref}
{...others}>
<title>{title}</title>
<path d="M0 3v18h24V3zm13.209 1.659c-1.428.548-2.799 1.757-3.905 4.182-.321.703-.925 2.062-1.2 2.67-2.224 4.882-3.364 5.932-6.72 5.932V4.35H13.15c.184-.011.235.25.06.309zm9.428 1.894V19.65H10.851c-.181.005-.227-.25-.055-.309 1.427-.548 2.798-1.757 3.904-4.182.321-.703.926-2.062 1.2-2.67 2.22-4.882 3.36-5.932 6.716-5.932z" />
</svg>
);
});

Sennheiser.propTypes = {
/**
* Hex color or color name
*/
color: PropTypes.string,
/**
* The size of the Icon.
*/
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* The title provides an accessible short text description to the SVG
*/
title: PropTypes.string,
};

export default Sennheiser;
Loading

0 comments on commit 280a3ee

Please sign in to comment.