From 41be4876f463a2a46547bf9ce5a3b2aad0fb03e6 Mon Sep 17 00:00:00 2001 From: Tarun Mangukiya Date: Tue, 21 Jul 2020 22:52:09 +0530 Subject: [PATCH] release: 1.1.4 (#17) * release: 1.1.4 * Auto-committed changes by create-pull-request action * fix: Update Unicons --- icons/uil-english-to-chinese.js | 28 ++++++++++ icons/uil-exclamation.js | 28 ++++++++++ icons/uil-font.js | 28 ++++++++++ icons/uil-headphone-slash.js | 28 ++++++++++ icons/uil-hindi-to-chinese.js | 28 ++++++++++ icons/uil-inbox.js | 28 ++++++++++ icons/uil-info.js | 28 ++++++++++ icons/uil-language.js | 28 ++++++++++ icons/uil-letter-chinese-a.js | 28 ++++++++++ icons/uil-letter-english-a.js | 28 ++++++++++ icons/uil-letter-hindi-a.js | 28 ++++++++++ icons/uil-letter-japanese-a.js | 28 ++++++++++ icons/uil-question.js | 28 ++++++++++ icons/uil-video-question.js | 28 ++++++++++ index.js | 14 +++++ package-lock.json | 94 +++++++++++++-------------------- package.json | 4 +- 17 files changed, 444 insertions(+), 60 deletions(-) create mode 100644 icons/uil-english-to-chinese.js create mode 100644 icons/uil-exclamation.js create mode 100644 icons/uil-font.js create mode 100644 icons/uil-headphone-slash.js create mode 100644 icons/uil-hindi-to-chinese.js create mode 100644 icons/uil-inbox.js create mode 100644 icons/uil-info.js create mode 100644 icons/uil-language.js create mode 100644 icons/uil-letter-chinese-a.js create mode 100644 icons/uil-letter-english-a.js create mode 100644 icons/uil-letter-hindi-a.js create mode 100644 icons/uil-letter-japanese-a.js create mode 100644 icons/uil-question.js create mode 100644 icons/uil-video-question.js diff --git a/icons/uil-english-to-chinese.js b/icons/uil-english-to-chinese.js new file mode 100644 index 00000000..be89955b --- /dev/null +++ b/icons/uil-english-to-chinese.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilEnglishToChinese = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M14.022,7h1a1.0013,1.0013,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.0013,1.0013,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Zm11-1a1,1,0,0,0,0-2h-3v-.5a1,1,0,0,0-2,0V13h-3a1,1,0,0,0,0,2h5.18427a6.72756,6.72756,0,0,1-1.22553,2.52667,6.66828,6.66828,0,0,1-.62915-.98272.99972.99972,0,1,0-1.77929.9121,8.67791,8.67791,0,0,0,.9591,1.468A6.6182,6.6182,0,0,1,13.10645,20.023a1.00008,1.00008,0,0,0,.42675,1.9541,8.63506,8.63506,0,0,0,3.445-1.62164,8.72368,8.72368,0,0,0,3.46857,1.62115,1,1,0,1,0,.43066-1.95312,6.72477,6.72477,0,0,1-2.4461-1.09009A8.73637,8.73637,0,0,0,20.24371,15ZM9.05176,11.24268a1.00011,1.00011,0,0,0,1.94043-.48536L9.23486,3.72754a2.28107,2.28107,0,0,0-4.42578,0L3.05176,10.75732a1.00011,1.00011,0,0,0,1.94043.48536L5.5528,9H8.49115ZM6.0528,7l.69671-2.78711a.2913.2913,0,0,1,.54492,0L7.99115,7Z' + })); +}; + +UilEnglishToChinese.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilEnglishToChinese.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilEnglishToChinese; \ No newline at end of file diff --git a/icons/uil-exclamation.js b/icons/uil-exclamation.js new file mode 100644 index 00000000..f7169675 --- /dev/null +++ b/icons/uil-exclamation.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilExclamation = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M12,14a1,1,0,0,0,1-1V7a1,1,0,0,0-2,0v6A1,1,0,0,0,12,14Zm0,4a1.25,1.25,0,1,0-1.25-1.25A1.25,1.25,0,0,0,12,18Z' + })); +}; + +UilExclamation.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilExclamation.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilExclamation; \ No newline at end of file diff --git a/icons/uil-font.js b/icons/uil-font.js new file mode 100644 index 00000000..3c6dd486 --- /dev/null +++ b/icons/uil-font.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilFont = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M21,20H20V3a1,1,0,0,0-1-1H15.5a1,1,0,0,0-.86.5L4.43,20H3a1,1,0,0,0,0,2H7a1,1,0,0,0,0-2H6.74l3.5-6H18v6H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-3-8H11.41l4.66-8H18Z' + })); +}; + +UilFont.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilFont.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilFont; \ No newline at end of file diff --git a/icons/uil-headphone-slash.js b/icons/uil-headphone-slash.js new file mode 100644 index 00000000..d174a531 --- /dev/null +++ b/icons/uil-headphone-slash.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilHeadphoneSlash = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M19.06934,5.93555a9.94468,9.94468,0,0,0-9.38868-2.6709.99992.99992,0,0,0,.43848,1.95117A8.0193,8.0193,0,0,1,20,13h-.33984a1,1,0,0,0,0,2H20v.33984a1,1,0,1,0,2,0V13A9.88842,9.88842,0,0,0,19.06934,5.93555ZM3.707,2.293A.99989.99989,0,0,0,2.293,3.707L4.72833,6.1424A9.96176,9.96176,0,0,0,2,13v7a1,1,0,0,0,1,1H6a3.00328,3.00328,0,0,0,3-3V16a3.00328,3.00328,0,0,0-3-3H4A7.96344,7.96344,0,0,1,6.14453,7.55859L15,16.41406V18a3.00328,3.00328,0,0,0,3,3h1.58594l.707.707A.99989.99989,0,0,0,21.707,20.293ZM6,15a1.0013,1.0013,0,0,1,1,1v2a1.0013,1.0013,0,0,1-1,1H4V15Z' + })); +}; + +UilHeadphoneSlash.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilHeadphoneSlash.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilHeadphoneSlash; \ No newline at end of file diff --git a/icons/uil-hindi-to-chinese.js b/icons/uil-hindi-to-chinese.js new file mode 100644 index 00000000..4d9f1ea9 --- /dev/null +++ b/icons/uil-hindi-to-chinese.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilHindiToChinese = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M11.022,2h-2a1,1,0,0,0,0,2V6H7.83771A2.96481,2.96481,0,0,0,8.022,5,3,3,0,0,0,2.42383,3.5a1.00016,1.00016,0,1,0,1.73242,1A1.00171,1.00171,0,0,1,5.022,4a1,1,0,0,1,0,2,1,1,0,0,0,0,2,1,1,0,0,1,0,2,1.00171,1.00171,0,0,1-.86572-.5,1.00016,1.00016,0,1,0-1.73242,1A3,3,0,0,0,8.022,9a2.96481,2.96481,0,0,0-.18426-1H9.022v3a1,1,0,0,0,2,0V4a1,1,0,0,0,0-2Zm3,5h1a1.0013,1.0013,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.0013,1.0013,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Zm11-1a1,1,0,0,0,0-2h-3v-.5a1,1,0,0,0-2,0V13h-3a1,1,0,0,0,0,2h5.18427a6.72756,6.72756,0,0,1-1.22553,2.52667,6.66828,6.66828,0,0,1-.62915-.98272.99972.99972,0,1,0-1.77929.9121,8.67791,8.67791,0,0,0,.9591,1.468A6.6182,6.6182,0,0,1,13.10645,20.023a1.00008,1.00008,0,0,0,.42675,1.9541,8.63506,8.63506,0,0,0,3.445-1.62164,8.72368,8.72368,0,0,0,3.46857,1.62115,1,1,0,1,0,.43066-1.95312,6.72477,6.72477,0,0,1-2.4461-1.09009A8.73637,8.73637,0,0,0,20.24371,15Z' + })); +}; + +UilHindiToChinese.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilHindiToChinese.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilHindiToChinese; \ No newline at end of file diff --git a/icons/uil-inbox.js b/icons/uil-inbox.js new file mode 100644 index 00000000..dd9c18fd --- /dev/null +++ b/icons/uil-inbox.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilInbox = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M19.05566,2h-14a3.00328,3.00328,0,0,0-3,3V19a3.00328,3.00328,0,0,0,3,3h14a3.00328,3.00328,0,0,0,3-3V5A3.00328,3.00328,0,0,0,19.05566,2Zm-14,2h14a1.001,1.001,0,0,1,1,1v8H17.59082a1.99687,1.99687,0,0,0-1.66406.89062L14.52051,16H9.59082L8.18457,13.89062A1.99687,1.99687,0,0,0,6.52051,13H4.05566V5A1.001,1.001,0,0,1,5.05566,4Zm14,16h-14a1.001,1.001,0,0,1-1-1V15H6.52051l1.40625,2.10938A1.99687,1.99687,0,0,0,9.59082,18h4.92969a1.99687,1.99687,0,0,0,1.66406-.89062L17.59082,15h2.46484v4A1.001,1.001,0,0,1,19.05566,20Z' + })); +}; + +UilInbox.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilInbox.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilInbox; \ No newline at end of file diff --git a/icons/uil-info.js b/icons/uil-info.js new file mode 100644 index 00000000..1792c816 --- /dev/null +++ b/icons/uil-info.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilInfo = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M12,10a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm0-4a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,6Z' + })); +}; + +UilInfo.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilInfo.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilInfo; \ No newline at end of file diff --git a/icons/uil-language.js b/icons/uil-language.js new file mode 100644 index 00000000..d3cfbffe --- /dev/null +++ b/icons/uil-language.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilLanguage = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M21.05566,12h-2a1,1,0,0,0,0,2v2H17.8714a2.96481,2.96481,0,0,0,.18426-1A2.99955,2.99955,0,0,0,12.458,13.50049a.99992.99992,0,1,0,1.73242.999A1.0009,1.0009,0,0,1,15.05566,14a1,1,0,0,1,0,2,1,1,0,0,0,0,2,1,1,0,1,1,0,2,1.0009,1.0009,0,0,1-.86523-.49951.99992.99992,0,1,0-1.73242.999A2.99955,2.99955,0,0,0,18.05566,19a2.96481,2.96481,0,0,0-.18426-1h1.18426v3a1,1,0,0,0,2,0V14a1,1,0,1,0,0-2ZM9.08594,11.24268a.99963.99963,0,1,0,1.93945-.48536L9.26855,3.72754a2.28044,2.28044,0,0,0-4.4248,0L3.08594,10.75732a.99963.99963,0,1,0,1.93945.48536L5.58618,9H8.52545ZM6.0863,7l.6969-2.78711a.29222.29222,0,0,1,.5459,0L8.02563,7Zm7.96936,0h1a1.001,1.001,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.001,1.001,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Z' + })); +}; + +UilLanguage.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilLanguage.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilLanguage; \ No newline at end of file diff --git a/icons/uil-letter-chinese-a.js b/icons/uil-letter-chinese-a.js new file mode 100644 index 00000000..b220e215 --- /dev/null +++ b/icons/uil-letter-chinese-a.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilLetterChineseA = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M20,5H13V4a1,1,0,0,0-2,0V5H4A1,1,0,0,0,4,7H15.88214a14.49252,14.49252,0,0,1-3.94067,7.95227A14.42561,14.42561,0,0,1,8.66406,9.67041a1.0002,1.0002,0,0,0-1.88867.65918,16.41412,16.41412,0,0,0,3.68012,5.95825,14.29858,14.29858,0,0,1-5.769,2.73511A1.00015,1.00015,0,0,0,4.89941,21a1.01758,1.01758,0,0,0,.21485-.023,16.297,16.297,0,0,0,6.831-3.31885A16.38746,16.38746,0,0,0,18.78711,20.977a1,1,0,0,0,.42578-1.9541,14.38226,14.38226,0,0,1-5.78955-2.73316A16.4802,16.4802,0,0,0,17.89233,7H20a1,1,0,0,0,0-2Z' + })); +}; + +UilLetterChineseA.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilLetterChineseA.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilLetterChineseA; \ No newline at end of file diff --git a/icons/uil-letter-english-a.js b/icons/uil-letter-english-a.js new file mode 100644 index 00000000..65344143 --- /dev/null +++ b/icons/uil-letter-english-a.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilLetterEnglishA = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M18.97021,19.75732,15.34912,5.27246A2.9958,2.9958,0,0,0,12.43848,3h-.877A2.9958,2.9958,0,0,0,8.65088,5.27246L5.02979,19.75732a1.0001,1.0001,0,0,0,1.94042.48536L8.28082,15h7.43836l1.31061,5.24268a1.0001,1.0001,0,0,0,1.94042-.48536ZM8.78082,13l1.81049-7.24219A.99825.99825,0,0,1,11.56152,5h.877a.99825.99825,0,0,1,.97021.75781L15.21918,13Z' + })); +}; + +UilLetterEnglishA.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilLetterEnglishA.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilLetterEnglishA; \ No newline at end of file diff --git a/icons/uil-letter-hindi-a.js b/icons/uil-letter-hindi-a.js new file mode 100644 index 00000000..f7abe146 --- /dev/null +++ b/icons/uil-letter-hindi-a.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilLetterHindiA = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M20.022,3h-5a1,1,0,0,0,0,2h1.5v6H11.57208a4.95124,4.95124,0,0,0,1.02558-3A5,5,0,0,0,3.26758,5.5.99974.99974,0,1,0,4.999,6.5,3.00021,3.00021,0,1,1,7.59766,11a1,1,0,0,0,0,2A3,3,0,1,1,4.999,17.5a.99974.99974,0,0,0-1.73144,1A5,5,0,0,0,12.59766,16a4.95124,4.95124,0,0,0-1.02558-3H16.522v7a1,1,0,0,0,2,0V5h1.5a1,1,0,0,0,0-2Z' + })); +}; + +UilLetterHindiA.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilLetterHindiA.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilLetterHindiA; \ No newline at end of file diff --git a/icons/uil-letter-japanese-a.js b/icons/uil-letter-japanese-a.js new file mode 100644 index 00000000..8985313c --- /dev/null +++ b/icons/uil-letter-japanese-a.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilLetterJapaneseA = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M20.47168,11.99707a4.86537,4.86537,0,0,0-4.00049-2.2038A5.59215,5.59215,0,0,0,16.34082,8.769a.9997.9997,0,1,0-1.94531.46192,3.55342,3.55342,0,0,1,.0827.60132,13.57729,13.57729,0,0,0-3.257.82189c.02252-1.20385.07678-2.40728.19672-3.60729l.03827-.38221a33.43522,33.43522,0,0,0,3.48224-.66418l.12011-.02979a1,1,0,1,0-.48047-1.9414l-.12207.03027c-.92163.23047-1.85565.40448-2.79394.5506l.15137-1.51056a1.00009,1.00009,0,0,0-1.99024-.19922L9.627,4.85962C8.69312,4.94336,7.75665,5,6.81836,5a1,1,0,0,0,0,2c.87054,0,1.7395-.04639,2.60681-.1142A46.66015,46.66015,0,0,0,9.222,11.58386c-.13421.07324-.26965.14209-.40264.21936a16.4074,16.4074,0,0,0-1.94922,1.31055l-.02246.01807a13.7396,13.7396,0,0,0-2.64844,2.70068,3.00419,3.00419,0,0,0,2.94629,4.71875A9.74034,9.74034,0,0,0,9.98328,19.5379a.99564.99564,0,0,0,1.82141-.70245c-.02423-.1452-.03534-.29193-.05811-.43732a13.83775,13.83775,0,0,0,1.314-1.15545,13.16694,13.16694,0,0,0,2.10168-2.729c.02289-.03949.04212-.0791.06445-.11865.118-.21057.22944-.422.33179-.63495.05383-.11108.1023-.22174.15155-.33282.05994-.13623.11719-.27222.17047-.40882.05646-.14361.10981-.28662.15845-.42968.03235-.09583.06055-.19123.08948-.28693.05133-.16882.10174-.3371.142-.50427l.005-.01776a3.01462,3.01462,0,0,1,2.46582,1.21972c1.01856,1.76709-.96289,4.977-4.417,7.15479a.99976.99976,0,1,0,1.0664,1.6914C19.88965,19.00977,22.07422,14.77734,20.47168,11.99707ZM6.7959,18.58252a1.00469,1.00469,0,0,1-.97949-1.57373,11.89343,11.89343,0,0,1,2.291-2.32275l.02637-.02149c.35388-.27692.742-.539,1.144-.793.0611,1.19537.17285,2.38684.32593,3.57489A8.18484,8.18484,0,0,1,6.7959,18.58252Zm7.32977-6.583a8.16646,8.16646,0,0,1-.31616.78137c-.0556.1189-.118.23774-.18018.35694q-.14419.27851-.3106.55432c-.08466.13953-.17188.27887-.26514.41742a11.48078,11.48078,0,0,1-1.40711,1.719c-.06982.06983-.14343.1333-.2146.201q-.16314-1.5975-.21124-3.20276a12.51276,12.51276,0,0,1,2.94-.93237C14.149,11.9295,14.13794,11.96436,14.12567,11.99951Z' + })); +}; + +UilLetterJapaneseA.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilLetterJapaneseA.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilLetterJapaneseA; \ No newline at end of file diff --git a/icons/uil-question.js b/icons/uil-question.js new file mode 100644 index 00000000..181d7fb5 --- /dev/null +++ b/icons/uil-question.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilQuestion = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M15.33252,9.5A3.5001,3.5001,0,0,0,8.80127,7.75a1.00016,1.00016,0,0,0,1.73242,1A1.50266,1.50266,0,0,1,11.83252,8a1.5,1.5,0,1,1,0,3h-.00244a.94984.94984,0,0,0-.18927.0387,1.03181,1.03181,0,0,0-.19861.04065.98275.98275,0,0,0-.15552.10485,1.00813,1.00813,0,0,0-.162.10975,1.00464,1.00464,0,0,0-.11706.1737.97789.97789,0,0,0-.09668.14417,1.02252,1.02252,0,0,0-.04285.21191A.94847.94847,0,0,0,10.83252,12v1l.00232.01135.0011.49109a1.00016,1.00016,0,0,0,1,.99756h.00244a1.00006,1.00006,0,0,0,.99756-1.00244l-.00153-.66138A3.49363,3.49363,0,0,0,15.33252,9.5Zm-4.20264,6.79A1,1,0,0,0,11.82959,18a1.036,1.036,0,0,0,.71045-.29,1.01517,1.01517,0,0,0,0-1.41992A1.03425,1.03425,0,0,0,11.12988,16.29Z' + })); +}; + +UilQuestion.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilQuestion.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilQuestion; \ No newline at end of file diff --git a/icons/uil-video-question.js b/icons/uil-video-question.js new file mode 100644 index 00000000..d4affe69 --- /dev/null +++ b/icons/uil-video-question.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilVideoQuestion = (props) => { + const { color, size, ...otherProps } = props + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M10.21,17.29a1.04667,1.04667,0,0,0-1.41992,0,1.02673,1.02673,0,0,0-.21.32959.94223.94223,0,0,0,0,.76025,1.15384,1.15384,0,0,0,.21.33008A1,1,0,0,0,10.5,18a.99993.99993,0,0,0-.08008-.38037A1.1515,1.1515,0,0,0,10.21,17.29ZM9.5,9a3.00933,3.00933,0,0,0-2.59766,1.49951.99956.99956,0,1,0,1.73047,1.001A1.00032,1.00032,0,1,1,9.5,13a.99974.99974,0,0,0-1,1v1a1,1,0,0,0,2,0v-.18427A2.99257,2.99257,0,0,0,9.5,9ZM21.52539,6.14941a.999.999,0,0,0-.97266-.04394l-3.56408,1.782A2.9975,2.9975,0,0,0,14,5H5A3.00328,3.00328,0,0,0,2,8v6a3.00328,3.00328,0,0,0,3,3H6a1,1,0,0,0,0-2H5a1.001,1.001,0,0,1-1-1V8A1.001,1.001,0,0,1,5,7h9a1.001,1.001,0,0,1,1,1v6a1.001,1.001,0,0,1-1,1h-.5a1,1,0,0,0,0,2H14a2.9975,2.9975,0,0,0,2.98865-2.88751l3.56408,1.782A1.00038,1.00038,0,0,0,22,15V7A.99976.99976,0,0,0,21.52539,6.14941ZM20,13.38184l-3-1.5V10.11816l3-1.5Z' + })); +}; + +UilVideoQuestion.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +UilVideoQuestion.defaultProps = { + color: 'currentColor', + size: '24', +}; + +export default UilVideoQuestion; \ No newline at end of file diff --git a/index.js b/index.js index 6c4dd22b..9f71a8fd 100644 --- a/index.js +++ b/index.js @@ -425,6 +425,7 @@ export { default as UilEditAlt } from './icons/uil-edit-alt' export { default as UilEllipsisH } from './icons/uil-ellipsis-h' export { default as UilEllipsisV } from './icons/uil-ellipsis-v' export { default as UilEmoji } from './icons/uil-emoji' +export { default as UilEnglishToChinese } from './icons/uil-english-to-chinese' export { default as UilEnter } from './icons/uil-enter' export { default as UilEnvelope } from './icons/uil-envelope' export { default as UilEnvelopeAdd } from './icons/uil-envelope-add' @@ -458,6 +459,7 @@ export { default as UilEuro } from './icons/uil-euro' export { default as UilEuroCircle } from './icons/uil-euro-circle' export { default as UilExchange } from './icons/uil-exchange' export { default as UilExchangeAlt } from './icons/uil-exchange-alt' +export { default as UilExclamation } from './icons/uil-exclamation' export { default as UilExclamationCircle } from './icons/uil-exclamation-circle' export { default as UilExclamationOctagon } from './icons/uil-exclamation-octagon' export { default as UilExclamationTriangle } from './icons/uil-exclamation-triangle' @@ -556,6 +558,7 @@ export { default as UilFolderQuestion } from './icons/uil-folder-question' export { default as UilFolderSlash } from './icons/uil-folder-slash' export { default as UilFolderTimes } from './icons/uil-folder-times' export { default as UilFolderUpload } from './icons/uil-folder-upload' +export { default as UilFont } from './icons/uil-font' export { default as UilFootball } from './icons/uil-football' export { default as UilFootballAmerican } from './icons/uil-football-american' export { default as UilFootballBall } from './icons/uil-football-ball' @@ -594,6 +597,7 @@ export { default as UilHdd } from './icons/uil-hdd' export { default as UilHeadSide } from './icons/uil-head-side' export { default as UilHeadSideCough } from './icons/uil-head-side-cough' export { default as UilHeadSideMask } from './icons/uil-head-side-mask' +export { default as UilHeadphoneSlash } from './icons/uil-headphone-slash' export { default as UilHeadphones } from './icons/uil-headphones' export { default as UilHeadphonesAlt } from './icons/uil-headphones-alt' export { default as UilHeart } from './icons/uil-heart' @@ -603,6 +607,7 @@ export { default as UilHeartMedical } from './icons/uil-heart-medical' export { default as UilHeartRate } from './icons/uil-heart-rate' export { default as UilHeartSign } from './icons/uil-heart-sign' export { default as UilHeartbeat } from './icons/uil-heartbeat' +export { default as UilHindiToChinese } from './icons/uil-hindi-to-chinese' export { default as UilHistory } from './icons/uil-history' export { default as UilHistoryAlt } from './icons/uil-history-alt' export { default as UilHome } from './icons/uil-home' @@ -646,7 +651,9 @@ export { default as UilImageUpload } from './icons/uil-image-upload' export { default as UilImageV } from './icons/uil-image-v' export { default as UilImages } from './icons/uil-images' export { default as UilImport } from './icons/uil-import' +export { default as UilInbox } from './icons/uil-inbox' export { default as UilIncomingCall } from './icons/uil-incoming-call' +export { default as UilInfo } from './icons/uil-info' export { default as UilInfoCircle } from './icons/uil-info-circle' export { default as UilInstagram } from './icons/uil-instagram' export { default as UilInstagramAlt } from './icons/uil-instagram-alt' @@ -670,6 +677,7 @@ export { default as UilKid } from './icons/uil-kid' export { default as UilLabel } from './icons/uil-label' export { default as UilLabelAlt } from './icons/uil-label-alt' export { default as UilLamp } from './icons/uil-lamp' +export { default as UilLanguage } from './icons/uil-language' export { default as UilLaptop } from './icons/uil-laptop' export { default as UilLaptopCloud } from './icons/uil-laptop-cloud' export { default as UilLaptopConnection } from './icons/uil-laptop-connection' @@ -684,6 +692,10 @@ export { default as UilLeftArrowToLeft } from './icons/uil-left-arrow-to-left' export { default as UilLeftIndent } from './icons/uil-left-indent' export { default as UilLeftIndentAlt } from './icons/uil-left-indent-alt' export { default as UilLeftToRightTextDirection } from './icons/uil-left-to-right-text-direction' +export { default as UilLetterChineseA } from './icons/uil-letter-chinese-a' +export { default as UilLetterEnglishA } from './icons/uil-letter-english-a' +export { default as UilLetterHindiA } from './icons/uil-letter-hindi-a' +export { default as UilLetterJapaneseA } from './icons/uil-letter-japanese-a' export { default as UilLifeRing } from './icons/uil-life-ring' export { default as UilLightbulb } from './icons/uil-lightbulb' export { default as UilLightbulbAlt } from './icons/uil-lightbulb-alt' @@ -856,6 +868,7 @@ export { default as UilProgrammingLanguage } from './icons/uil-programming-langu export { default as UilPump } from './icons/uil-pump' export { default as UilPuzzlePiece } from './icons/uil-puzzle-piece' export { default as UilQrcodeScan } from './icons/uil-qrcode-scan' +export { default as UilQuestion } from './icons/uil-question' export { default as UilQuestionCircle } from './icons/uil-question-circle' export { default as UilRainbow } from './icons/uil-rainbow' export { default as UilRaindrops } from './icons/uil-raindrops' @@ -1113,6 +1126,7 @@ export { default as UilVerticalDistributeBottom } from './icons/uil-vertical-dis export { default as UilVerticalDistributionCenter } from './icons/uil-vertical-distribution-center' export { default as UilVerticalDistributionTop } from './icons/uil-vertical-distribution-top' export { default as UilVideo } from './icons/uil-video' +export { default as UilVideoQuestion } from './icons/uil-video-question' export { default as UilVideoSlash } from './icons/uil-video-slash' export { default as UilVirusSlash } from './icons/uil-virus-slash' export { default as UilVisualStudio } from './icons/uil-visual-studio' diff --git a/package-lock.json b/package-lock.json index 5425fcb6..59faee09 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,13 +1,13 @@ { "name": "@iconscout/react-unicons", - "version": "1.1.3", + "version": "1.1.4", "lockfileVersion": 1, "requires": true, "dependencies": { "@iconscout/unicons": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/@iconscout/unicons/-/unicons-2.1.9.tgz", - "integrity": "sha512-xqxybtdb3Q8uXVteYMdQjF1RFybMdxbL8YsYYCSbBdR9VT8wWevow6RL6mXOUwEF18t75lPg9GzM822ihzCIaA==", + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/@iconscout/unicons/-/unicons-2.1.11.tgz", + "integrity": "sha512-4yRgh76BpdVzrK1St8tEMJdZUKtIZNmIwkXRIL5v5vezvQth84KMqrvU3No5kRb0sWd2GkU+JQzumbInYDZH/w==", "dev": true, "requires": { "async": "^2.6.1", @@ -26,9 +26,9 @@ }, "dependencies": { "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "version": "4.17.19", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==", "dev": true } } @@ -396,9 +396,9 @@ }, "dependencies": { "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "version": "4.17.19", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==", "dev": true } } @@ -1381,22 +1381,22 @@ } }, "es-abstract": { - "version": "1.17.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz", - "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==", + "version": "1.17.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", + "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", "dev": true, "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.1", - "is-callable": "^1.1.5", - "is-regex": "^1.0.5", + "is-callable": "^1.2.0", + "is-regex": "^1.1.0", "object-inspect": "^1.7.0", "object-keys": "^1.1.1", "object.assign": "^4.1.0", - "string.prototype.trimleft": "^2.1.1", - "string.prototype.trimright": "^2.1.1" + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" } }, "es-to-primitive": { @@ -2691,9 +2691,9 @@ "dev": true }, "is-callable": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz", - "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz", + "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==", "dev": true }, "is-data-descriptor": { @@ -2804,12 +2804,12 @@ } }, "is-regex": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz", - "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.0.tgz", + "integrity": "sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==", "dev": true, "requires": { - "has": "^1.0.3" + "has-symbols": "^1.0.1" } }, "is-stream": { @@ -2874,9 +2874,9 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", + "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", "dev": true, "requires": { "argparse": "^1.0.7", @@ -3434,9 +3434,9 @@ } }, "object-inspect": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", - "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", + "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", "dev": true }, "object-keys": { @@ -3507,9 +3507,9 @@ } }, "open": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/open/-/open-7.0.4.tgz", - "integrity": "sha512-brSA+/yq+b08Hsr4c8fsEW2CRzk1BmfN3SAK/5VCHQ9bdoZJ4qa/+AfR0xHjlbbZUyPkUHs1b8x1RqdyZdkVqQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-7.1.0.tgz", + "integrity": "sha512-lLPI5KgOwEYCDKXf4np7y1PBEkj7HYIyP2DY8mVDRnx0VIIu6bNrRB0R66TuO7Mack6EnTNLm4uvcl1UoklTpA==", "dev": true, "requires": { "is-docker": "^2.0.0", @@ -4392,28 +4392,6 @@ "es-abstract": "^1.17.5" } }, - "string.prototype.trimleft": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz", - "integrity": "sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", - "string.prototype.trimstart": "^1.0.0" - } - }, - "string.prototype.trimright": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz", - "integrity": "sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", - "string.prototype.trimend": "^1.0.0" - } - }, "string.prototype.trimstart": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", @@ -4498,9 +4476,9 @@ } }, "css-what": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz", - "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.3.0.tgz", + "integrity": "sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg==", "dev": true }, "domutils": { diff --git a/package.json b/package.json index 52a96ea5..d8470c98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@iconscout/react-unicons", - "version": "1.1.3", + "version": "1.1.4", "description": "1100+ vector icons as easy to use React Components", "main": "./lib/cjs/index.js", "module": "/index.js", @@ -33,7 +33,7 @@ }, "homepage": "https://iconscout.com/unicons", "devDependencies": { - "@iconscout/unicons": "^2.1.9", + "@iconscout/unicons": "^2.1.11", "cheerio": "^1.0.0-rc.3", "fs-plus": "^3.1.1", "uppercamelcase": "^3.0.0",