diff options
author | Vitaly Takmazov | 2022-11-06 03:30:40 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | 7b14a8f3faf7672f0aefbf93d5c37f62a169b535 (patch) | |
tree | b027f687d286316afd493c3cf3cbbbc7aedd7396 /vnext/src/ui/Icon.js | |
parent | 00ff146fb45b64aa3a4278c05e4a4c476152e2b4 (diff) |
Cleanup ESLint warnings
Diffstat (limited to 'vnext/src/ui/Icon.js')
-rw-r--r-- | vnext/src/ui/Icon.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/ui/Icon.js b/vnext/src/ui/Icon.js index 3255346f..acf7bccf 100644 --- a/vnext/src/ui/Icon.js +++ b/vnext/src/ui/Icon.js @@ -5,7 +5,7 @@ import PropTypes from 'prop-types'; import evilIcons from 'evil-icons/assets/sprite.svg'; /** - * @typedef {Object} IconProps + * @typedef {object} IconProps * @property {string} size * @property {string=} className * @property {string} name @@ -14,6 +14,7 @@ import evilIcons from 'evil-icons/assets/sprite.svg'; /** * Icon inner component + * * @param {IconProps} props - icon props */ function IconElement(props) { |