From 9237919c1be66e886c34dcdfb111f4dafb02e895 Mon Sep 17 00:00:00 2001 From: wangdi Date: Fri, 13 Mar 2026 13:37:42 +1100 Subject: [PATCH 1/5] fix(input): prevent Addon from passing size prop to non-input children InputGroupAddon.cloneElement was blindly passing size='md' to all children including icons, causing SVGs to render with width="md" instead of their default "1em". Now only clones props onto Input, Button, and Select children. --- packages/react/src/input/input-group-addon.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/packages/react/src/input/input-group-addon.tsx b/packages/react/src/input/input-group-addon.tsx index d22e069e..8c05d4f3 100755 --- a/packages/react/src/input/input-group-addon.tsx +++ b/packages/react/src/input/input-group-addon.tsx @@ -27,11 +27,15 @@ const InputGroupAddon = (props: InputGroupAddonProps): React.ReactElement => { return (
{React.Children.map(children, (child: React.ReactElement) => { - const childProps: Partial = { - disabled, - size: inputSize as SizeType, - }; - return React.cloneElement(child, childProps); + const displayName = (child.type as any)?.displayName; + if (displayName === 'Input' || displayName === 'Button' || displayName === 'Select') { + const childProps: Partial = { + disabled, + size: inputSize as SizeType, + }; + return React.cloneElement(child, childProps); + } + return child; })}
); From fe4d5082c97f128705af8ab46defab50fd2ca73e Mon Sep 17 00:00:00 2001 From: wangdi Date: Fri, 13 Mar 2026 13:37:47 +1100 Subject: [PATCH 2/5] fix(icons): add vertical-align middle for proper inline alignment SVG icons defaulted to vertical-align: baseline, causing misalignment when used inline with text. Now all icons default to vertical-align: middle, which can still be overridden via the style prop. --- packages/icons/scripts/generate-icons.js | 2 +- packages/icons/src/icon-accessible.tsx | 2 +- packages/icons/src/icon-add-file.tsx | 2 +- packages/icons/src/icon-add-list.tsx | 2 +- packages/icons/src/icon-add-team.tsx | 2 +- packages/icons/src/icon-add-user.tsx | 2 +- packages/icons/src/icon-address-book.tsx | 2 +- packages/icons/src/icon-android.tsx | 2 +- packages/icons/src/icon-apple.tsx | 2 +- packages/icons/src/icon-approval.tsx | 2 +- packages/icons/src/icon-archive.tsx | 2 +- packages/icons/src/icon-arrow-down-circle.tsx | 2 +- packages/icons/src/icon-arrow-down-left-circle.tsx | 2 +- packages/icons/src/icon-arrow-down-left.tsx | 2 +- packages/icons/src/icon-arrow-down-right-circle.tsx | 2 +- packages/icons/src/icon-arrow-down-right.tsx | 2 +- packages/icons/src/icon-arrow-down.tsx | 2 +- packages/icons/src/icon-arrow-left-circle.tsx | 2 +- packages/icons/src/icon-arrow-left.tsx | 2 +- packages/icons/src/icon-arrow-right-circle.tsx | 2 +- packages/icons/src/icon-arrow-right.tsx | 2 +- packages/icons/src/icon-arrow-up-circle.tsx | 2 +- packages/icons/src/icon-arrow-up-left-circle.tsx | 2 +- packages/icons/src/icon-arrow-up-left.tsx | 2 +- packages/icons/src/icon-arrow-up-right-circle.tsx | 2 +- packages/icons/src/icon-arrow-up-right.tsx | 2 +- packages/icons/src/icon-arrow-up.tsx | 2 +- packages/icons/src/icon-attention.tsx | 2 +- packages/icons/src/icon-audio-file.tsx | 2 +- packages/icons/src/icon-audio-fill.tsx | 2 +- packages/icons/src/icon-audio-mute.tsx | 2 +- packages/icons/src/icon-audio.tsx | 2 +- packages/icons/src/icon-back.tsx | 2 +- packages/icons/src/icon-bearish.tsx | 2 +- packages/icons/src/icon-behance.tsx | 2 +- packages/icons/src/icon-bookmark.tsx | 2 +- packages/icons/src/icon-branch.tsx | 2 +- packages/icons/src/icon-briefcase.tsx | 2 +- packages/icons/src/icon-broadcast.tsx | 2 +- packages/icons/src/icon-brush.tsx | 2 +- packages/icons/src/icon-bullish.tsx | 2 +- packages/icons/src/icon-business-card.tsx | 2 +- packages/icons/src/icon-business.tsx | 2 +- packages/icons/src/icon-calculator.tsx | 2 +- packages/icons/src/icon-calendar.tsx | 2 +- packages/icons/src/icon-callback.tsx | 2 +- packages/icons/src/icon-cancel-file.tsx | 2 +- packages/icons/src/icon-candle-sticks.tsx | 2 +- packages/icons/src/icon-check-circle.tsx | 2 +- packages/icons/src/icon-check-circle1.tsx | 2 +- packages/icons/src/icon-check-file.tsx | 2 +- packages/icons/src/icon-check-fill.tsx | 2 +- packages/icons/src/icon-check-square.tsx | 2 +- packages/icons/src/icon-checkmark.tsx | 2 +- packages/icons/src/icon-chrome.tsx | 2 +- packages/icons/src/icon-circle-share.tsx | 2 +- packages/icons/src/icon-close-circle.tsx | 2 +- packages/icons/src/icon-close-fill.tsx | 2 +- packages/icons/src/icon-close.tsx | 2 +- packages/icons/src/icon-cloud-download.tsx | 2 +- packages/icons/src/icon-cloud-upload.tsx | 2 +- packages/icons/src/icon-code.tsx | 2 +- packages/icons/src/icon-collect.tsx | 2 +- packages/icons/src/icon-colorlens.tsx | 2 +- packages/icons/src/icon-comment-square.tsx | 2 +- packages/icons/src/icon-comment.tsx | 2 +- packages/icons/src/icon-conference.tsx | 2 +- packages/icons/src/icon-copyright.tsx | 2 +- packages/icons/src/icon-create-archive.tsx | 2 +- packages/icons/src/icon-credit-card.tsx | 2 +- packages/icons/src/icon-css.tsx | 2 +- packages/icons/src/icon-currency-exchange.tsx | 2 +- packages/icons/src/icon-cursor.tsx | 2 +- packages/icons/src/icon-customer-service.tsx | 2 +- packages/icons/src/icon-customer-support.tsx | 2 +- packages/icons/src/icon-del-team.tsx | 2 +- packages/icons/src/icon-del-user.tsx | 2 +- packages/icons/src/icon-delete-archive.tsx | 2 +- packages/icons/src/icon-delete-file.tsx | 2 +- packages/icons/src/icon-delivered.tsx | 2 +- packages/icons/src/icon-delivery.tsx | 2 +- packages/icons/src/icon-department.tsx | 2 +- packages/icons/src/icon-desktop.tsx | 2 +- packages/icons/src/icon-diploma.tsx | 2 +- packages/icons/src/icon-dislike.tsx | 2 +- packages/icons/src/icon-doc-file.tsx | 2 +- packages/icons/src/icon-document.tsx | 2 +- packages/icons/src/icon-donate.tsx | 2 +- packages/icons/src/icon-down-fill.tsx | 2 +- packages/icons/src/icon-down.tsx | 2 +- packages/icons/src/icon-download.tsx | 2 +- packages/icons/src/icon-dropbox.tsx | 2 +- packages/icons/src/icon-edit-file.tsx | 2 +- packages/icons/src/icon-education.tsx | 2 +- packages/icons/src/icon-expired.tsx | 2 +- packages/icons/src/icon-external.tsx | 2 +- packages/icons/src/icon-eye-close.tsx | 2 +- packages/icons/src/icon-eye.tsx | 2 +- packages/icons/src/icon-face.tsx | 2 +- packages/icons/src/icon-facebook.tsx | 2 +- packages/icons/src/icon-faq.tsx | 2 +- packages/icons/src/icon-favourite-file.tsx | 2 +- packages/icons/src/icon-feedback.tsx | 2 +- packages/icons/src/icon-file-zip.tsx | 2 +- packages/icons/src/icon-file.tsx | 2 +- packages/icons/src/icon-fire-fill.tsx | 2 +- packages/icons/src/icon-fire.tsx | 2 +- packages/icons/src/icon-forbid.tsx | 2 +- packages/icons/src/icon-fork.tsx | 2 +- packages/icons/src/icon-frame.tsx | 2 +- packages/icons/src/icon-gif.tsx | 2 +- packages/icons/src/icon-gift.tsx | 2 +- packages/icons/src/icon-github.tsx | 2 +- packages/icons/src/icon-google.tsx | 2 +- packages/icons/src/icon-hand-cursor.tsx | 2 +- packages/icons/src/icon-heart-fill.tsx | 2 +- packages/icons/src/icon-heart.tsx | 2 +- packages/icons/src/icon-hierarchy.tsx | 2 +- packages/icons/src/icon-home.tsx | 2 +- packages/icons/src/icon-html.tsx | 2 +- packages/icons/src/icon-id-card.tsx | 2 +- packages/icons/src/icon-idea.tsx | 2 +- packages/icons/src/icon-image-file.tsx | 2 +- packages/icons/src/icon-info-fill.tsx | 2 +- packages/icons/src/icon-info.tsx | 2 +- packages/icons/src/icon-inspection.tsx | 2 +- packages/icons/src/icon-instagram.tsx | 2 +- packages/icons/src/icon-internal.tsx | 2 +- packages/icons/src/icon-key.tsx | 2 +- packages/icons/src/icon-laptop.tsx | 2 +- packages/icons/src/icon-left-fill.tsx | 2 +- packages/icons/src/icon-left.tsx | 2 +- packages/icons/src/icon-library.tsx | 2 +- packages/icons/src/icon-link.tsx | 2 +- packages/icons/src/icon-linkedin.tsx | 2 +- packages/icons/src/icon-loader-3quarter.tsx | 2 +- packages/icons/src/icon-loader-circle.tsx | 2 +- packages/icons/src/icon-loader-quarter.tsx | 2 +- packages/icons/src/icon-loader.tsx | 2 +- packages/icons/src/icon-lock.tsx | 2 +- packages/icons/src/icon-login.tsx | 2 +- packages/icons/src/icon-maintain.tsx | 2 +- packages/icons/src/icon-manager.tsx | 2 +- packages/icons/src/icon-medal.tsx | 2 +- packages/icons/src/icon-medium.tsx | 2 +- packages/icons/src/icon-minus-circle.tsx | 2 +- packages/icons/src/icon-minus-fill.tsx | 2 +- packages/icons/src/icon-minus.tsx | 2 +- packages/icons/src/icon-money-token.tsx | 2 +- packages/icons/src/icon-money-transfer.tsx | 2 +- packages/icons/src/icon-multiple-inputs.tsx | 2 +- packages/icons/src/icon-music.tsx | 2 +- packages/icons/src/icon-news.tsx | 2 +- packages/icons/src/icon-no-idea.tsx | 2 +- packages/icons/src/icon-note.tsx | 2 +- packages/icons/src/icon-online-support.tsx | 2 +- packages/icons/src/icon-open-archive.tsx | 2 +- packages/icons/src/icon-opened-folder.tsx | 2 +- packages/icons/src/icon-org-unit.tsx | 2 +- packages/icons/src/icon-organization.tsx | 2 +- packages/icons/src/icon-overtime.tsx | 2 +- packages/icons/src/icon-package.tsx | 2 +- packages/icons/src/icon-paid.tsx | 2 +- packages/icons/src/icon-parking.tsx | 2 +- packages/icons/src/icon-picture.tsx | 2 +- packages/icons/src/icon-pie-chart.tsx | 2 +- packages/icons/src/icon-play-fill.tsx | 2 +- packages/icons/src/icon-plus-circle.tsx | 2 +- packages/icons/src/icon-plus-fill.tsx | 2 +- packages/icons/src/icon-plus.tsx | 2 +- packages/icons/src/icon-priority-high.tsx | 2 +- packages/icons/src/icon-priority-low.tsx | 2 +- packages/icons/src/icon-priority-medium.tsx | 2 +- packages/icons/src/icon-privacy.tsx | 2 +- packages/icons/src/icon-process.tsx | 2 +- packages/icons/src/icon-projector.tsx | 2 +- packages/icons/src/icon-psd.tsx | 2 +- packages/icons/src/icon-puzzle.tsx | 2 +- packages/icons/src/icon-qrcode.tsx | 2 +- packages/icons/src/icon-question-fill.tsx | 2 +- packages/icons/src/icon-questions.tsx | 2 +- packages/icons/src/icon-rating.tsx | 2 +- packages/icons/src/icon-reading.tsx | 2 +- packages/icons/src/icon-redo.tsx | 2 +- packages/icons/src/icon-registration-circle.tsx | 2 +- packages/icons/src/icon-resize-all.tsx | 2 +- packages/icons/src/icon-resize-diagonal.tsx | 2 +- packages/icons/src/icon-resize-hr.tsx | 2 +- packages/icons/src/icon-resize-ver.tsx | 2 +- packages/icons/src/icon-right-fill.tsx | 2 +- packages/icons/src/icon-right.tsx | 2 +- packages/icons/src/icon-ruler.tsx | 2 +- packages/icons/src/icon-scan.tsx | 2 +- packages/icons/src/icon-search-reverse.tsx | 2 +- packages/icons/src/icon-search.tsx | 2 +- packages/icons/src/icon-setting.tsx | 2 +- packages/icons/src/icon-settings.tsx | 2 +- packages/icons/src/icon-share.tsx | 2 +- packages/icons/src/icon-shop.tsx | 2 +- packages/icons/src/icon-signature.tsx | 2 +- packages/icons/src/icon-skin.tsx | 2 +- packages/icons/src/icon-skype.tsx | 2 +- packages/icons/src/icon-slack.tsx | 2 +- packages/icons/src/icon-speaker.tsx | 2 +- packages/icons/src/icon-split-horizontal.tsx | 2 +- packages/icons/src/icon-split-vertical.tsx | 2 +- packages/icons/src/icon-star-fill.tsx | 2 +- packages/icons/src/icon-star.tsx | 2 +- packages/icons/src/icon-statistics.tsx | 2 +- packages/icons/src/icon-structure.tsx | 2 +- packages/icons/src/icon-support.tsx | 2 +- packages/icons/src/icon-survey.tsx | 2 +- packages/icons/src/icon-switch-user.tsx | 2 +- packages/icons/src/icon-switch.tsx | 2 +- packages/icons/src/icon-sync.tsx | 2 +- packages/icons/src/icon-tags.tsx | 2 +- packages/icons/src/icon-team.tsx | 2 +- packages/icons/src/icon-todo-list.tsx | 2 +- packages/icons/src/icon-trademark.tsx | 2 +- packages/icons/src/icon-trash.tsx | 2 +- packages/icons/src/icon-twitter.tsx | 2 +- packages/icons/src/icon-undo.tsx | 2 +- packages/icons/src/icon-unlock.tsx | 2 +- packages/icons/src/icon-up-fill.tsx | 2 +- packages/icons/src/icon-up.tsx | 2 +- packages/icons/src/icon-upload.tsx | 2 +- packages/icons/src/icon-user.tsx | 2 +- packages/icons/src/icon-video-file.tsx | 2 +- packages/icons/src/icon-view-file.tsx | 2 +- packages/icons/src/icon-vip.tsx | 2 +- packages/icons/src/icon-voice-person.tsx | 2 +- packages/icons/src/icon-wallet.tsx | 2 +- packages/icons/src/icon-warn-fill.tsx | 2 +- packages/icons/src/icon-warning.tsx | 2 +- packages/icons/src/icon-wechat.tsx | 2 +- packages/icons/src/icon-weibo.tsx | 2 +- packages/icons/src/icon-wifi.tsx | 2 +- packages/icons/src/icon-word.tsx | 2 +- packages/icons/src/icon-work.tsx | 2 +- packages/icons/src/icon-xls.tsx | 2 +- packages/icons/src/icon-youtube.tsx | 2 +- packages/icons/src/icon-zoomin.tsx | 2 +- packages/icons/src/icon-zoomout.tsx | 2 +- 243 files changed, 243 insertions(+), 243 deletions(-) diff --git a/packages/icons/scripts/generate-icons.js b/packages/icons/scripts/generate-icons.js index ff6f7116..33ce46b9 100644 --- a/packages/icons/scripts/generate-icons.js +++ b/packages/icons/scripts/generate-icons.js @@ -45,7 +45,7 @@ const ${pascalName} = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-accessible.tsx b/packages/icons/src/icon-accessible.tsx index 91133029..112d566e 100644 --- a/packages/icons/src/icon-accessible.tsx +++ b/packages/icons/src/icon-accessible.tsx @@ -11,7 +11,7 @@ const IconAccessible = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-add-file.tsx b/packages/icons/src/icon-add-file.tsx index ded73b4f..09fdbd53 100644 --- a/packages/icons/src/icon-add-file.tsx +++ b/packages/icons/src/icon-add-file.tsx @@ -11,7 +11,7 @@ const IconAddFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-add-list.tsx b/packages/icons/src/icon-add-list.tsx index aff01ced..4cd682b2 100644 --- a/packages/icons/src/icon-add-list.tsx +++ b/packages/icons/src/icon-add-list.tsx @@ -11,7 +11,7 @@ const IconAddList = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-add-team.tsx b/packages/icons/src/icon-add-team.tsx index 33dc60e4..f2df7c67 100644 --- a/packages/icons/src/icon-add-team.tsx +++ b/packages/icons/src/icon-add-team.tsx @@ -11,7 +11,7 @@ const IconAddTeam = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-add-user.tsx b/packages/icons/src/icon-add-user.tsx index bc8f0444..04170b01 100644 --- a/packages/icons/src/icon-add-user.tsx +++ b/packages/icons/src/icon-add-user.tsx @@ -11,7 +11,7 @@ const IconAddUser = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-address-book.tsx b/packages/icons/src/icon-address-book.tsx index 400b3672..97378e6f 100644 --- a/packages/icons/src/icon-address-book.tsx +++ b/packages/icons/src/icon-address-book.tsx @@ -11,7 +11,7 @@ const IconAddressBook = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-android.tsx b/packages/icons/src/icon-android.tsx index 8c93009e..b18a85c5 100644 --- a/packages/icons/src/icon-android.tsx +++ b/packages/icons/src/icon-android.tsx @@ -11,7 +11,7 @@ const IconAndroid = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-apple.tsx b/packages/icons/src/icon-apple.tsx index dd278403..6dba69e0 100644 --- a/packages/icons/src/icon-apple.tsx +++ b/packages/icons/src/icon-apple.tsx @@ -11,7 +11,7 @@ const IconApple = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-approval.tsx b/packages/icons/src/icon-approval.tsx index 739ed466..3855dbdd 100644 --- a/packages/icons/src/icon-approval.tsx +++ b/packages/icons/src/icon-approval.tsx @@ -11,7 +11,7 @@ const IconApproval = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-archive.tsx b/packages/icons/src/icon-archive.tsx index c7a7a687..62ea25da 100644 --- a/packages/icons/src/icon-archive.tsx +++ b/packages/icons/src/icon-archive.tsx @@ -11,7 +11,7 @@ const IconArchive = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-down-circle.tsx b/packages/icons/src/icon-arrow-down-circle.tsx index 5b1c2efd..0cffcc9b 100644 --- a/packages/icons/src/icon-arrow-down-circle.tsx +++ b/packages/icons/src/icon-arrow-down-circle.tsx @@ -11,7 +11,7 @@ const IconArrowDownCircle = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-down-left-circle.tsx b/packages/icons/src/icon-arrow-down-left-circle.tsx index ddc58cf1..be129d54 100644 --- a/packages/icons/src/icon-arrow-down-left-circle.tsx +++ b/packages/icons/src/icon-arrow-down-left-circle.tsx @@ -11,7 +11,7 @@ const IconArrowDownLeftCircle = forwardRef((props, ref height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-down-left.tsx b/packages/icons/src/icon-arrow-down-left.tsx index c9a65c61..9d04e0b5 100644 --- a/packages/icons/src/icon-arrow-down-left.tsx +++ b/packages/icons/src/icon-arrow-down-left.tsx @@ -11,7 +11,7 @@ const IconArrowDownLeft = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-down-right-circle.tsx b/packages/icons/src/icon-arrow-down-right-circle.tsx index 31abd8d3..fbecd18f 100644 --- a/packages/icons/src/icon-arrow-down-right-circle.tsx +++ b/packages/icons/src/icon-arrow-down-right-circle.tsx @@ -11,7 +11,7 @@ const IconArrowDownRightCircle = forwardRef((props, re height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-down-right.tsx b/packages/icons/src/icon-arrow-down-right.tsx index 2ea41b37..e5a6ae71 100644 --- a/packages/icons/src/icon-arrow-down-right.tsx +++ b/packages/icons/src/icon-arrow-down-right.tsx @@ -11,7 +11,7 @@ const IconArrowDownRight = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-down.tsx b/packages/icons/src/icon-arrow-down.tsx index 0d8e781c..eddc1c64 100644 --- a/packages/icons/src/icon-arrow-down.tsx +++ b/packages/icons/src/icon-arrow-down.tsx @@ -11,7 +11,7 @@ const IconArrowDown = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-left-circle.tsx b/packages/icons/src/icon-arrow-left-circle.tsx index 2c5295b2..8b2e9677 100644 --- a/packages/icons/src/icon-arrow-left-circle.tsx +++ b/packages/icons/src/icon-arrow-left-circle.tsx @@ -11,7 +11,7 @@ const IconArrowLeftCircle = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-left.tsx b/packages/icons/src/icon-arrow-left.tsx index dcafc5d1..64df2f4b 100644 --- a/packages/icons/src/icon-arrow-left.tsx +++ b/packages/icons/src/icon-arrow-left.tsx @@ -11,7 +11,7 @@ const IconArrowLeft = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-right-circle.tsx b/packages/icons/src/icon-arrow-right-circle.tsx index e816e0ee..e47cfe45 100644 --- a/packages/icons/src/icon-arrow-right-circle.tsx +++ b/packages/icons/src/icon-arrow-right-circle.tsx @@ -11,7 +11,7 @@ const IconArrowRightCircle = forwardRef((props, ref) = height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-right.tsx b/packages/icons/src/icon-arrow-right.tsx index b0a55d45..0678afb4 100644 --- a/packages/icons/src/icon-arrow-right.tsx +++ b/packages/icons/src/icon-arrow-right.tsx @@ -11,7 +11,7 @@ const IconArrowRight = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-up-circle.tsx b/packages/icons/src/icon-arrow-up-circle.tsx index 33f7ad2d..8dac99fe 100644 --- a/packages/icons/src/icon-arrow-up-circle.tsx +++ b/packages/icons/src/icon-arrow-up-circle.tsx @@ -11,7 +11,7 @@ const IconArrowUpCircle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-up-left-circle.tsx b/packages/icons/src/icon-arrow-up-left-circle.tsx index f98a8cd5..0c2001a7 100644 --- a/packages/icons/src/icon-arrow-up-left-circle.tsx +++ b/packages/icons/src/icon-arrow-up-left-circle.tsx @@ -11,7 +11,7 @@ const IconArrowUpLeftCircle = forwardRef((props, ref) height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-up-left.tsx b/packages/icons/src/icon-arrow-up-left.tsx index c83d3d97..d9174feb 100644 --- a/packages/icons/src/icon-arrow-up-left.tsx +++ b/packages/icons/src/icon-arrow-up-left.tsx @@ -11,7 +11,7 @@ const IconArrowUpLeft = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-up-right-circle.tsx b/packages/icons/src/icon-arrow-up-right-circle.tsx index 24a8c445..17cc9d0a 100644 --- a/packages/icons/src/icon-arrow-up-right-circle.tsx +++ b/packages/icons/src/icon-arrow-up-right-circle.tsx @@ -11,7 +11,7 @@ const IconArrowUpRightCircle = forwardRef((props, ref) height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-up-right.tsx b/packages/icons/src/icon-arrow-up-right.tsx index b95bbf99..b47c16bd 100644 --- a/packages/icons/src/icon-arrow-up-right.tsx +++ b/packages/icons/src/icon-arrow-up-right.tsx @@ -11,7 +11,7 @@ const IconArrowUpRight = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-arrow-up.tsx b/packages/icons/src/icon-arrow-up.tsx index 330fdb03..4933db73 100644 --- a/packages/icons/src/icon-arrow-up.tsx +++ b/packages/icons/src/icon-arrow-up.tsx @@ -11,7 +11,7 @@ const IconArrowUp = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-attention.tsx b/packages/icons/src/icon-attention.tsx index 7164b757..1c0f3c9e 100644 --- a/packages/icons/src/icon-attention.tsx +++ b/packages/icons/src/icon-attention.tsx @@ -11,7 +11,7 @@ const IconAttention = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-audio-file.tsx b/packages/icons/src/icon-audio-file.tsx index 346a60d3..1143285f 100644 --- a/packages/icons/src/icon-audio-file.tsx +++ b/packages/icons/src/icon-audio-file.tsx @@ -11,7 +11,7 @@ const IconAudioFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-audio-fill.tsx b/packages/icons/src/icon-audio-fill.tsx index 25dea68d..7c3e92d7 100644 --- a/packages/icons/src/icon-audio-fill.tsx +++ b/packages/icons/src/icon-audio-fill.tsx @@ -11,7 +11,7 @@ const IconAudioFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-audio-mute.tsx b/packages/icons/src/icon-audio-mute.tsx index 0b81c9d1..ecc3ba11 100644 --- a/packages/icons/src/icon-audio-mute.tsx +++ b/packages/icons/src/icon-audio-mute.tsx @@ -11,7 +11,7 @@ const IconAudioMute = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-audio.tsx b/packages/icons/src/icon-audio.tsx index 80c9c6c3..dae1633e 100644 --- a/packages/icons/src/icon-audio.tsx +++ b/packages/icons/src/icon-audio.tsx @@ -11,7 +11,7 @@ const IconAudio = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-back.tsx b/packages/icons/src/icon-back.tsx index b301223a..f6995f46 100644 --- a/packages/icons/src/icon-back.tsx +++ b/packages/icons/src/icon-back.tsx @@ -11,7 +11,7 @@ const IconBack = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-bearish.tsx b/packages/icons/src/icon-bearish.tsx index cbde69fd..63cf786b 100644 --- a/packages/icons/src/icon-bearish.tsx +++ b/packages/icons/src/icon-bearish.tsx @@ -11,7 +11,7 @@ const IconBearish = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-behance.tsx b/packages/icons/src/icon-behance.tsx index e1aefae1..012ea494 100644 --- a/packages/icons/src/icon-behance.tsx +++ b/packages/icons/src/icon-behance.tsx @@ -11,7 +11,7 @@ const IconBehance = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-bookmark.tsx b/packages/icons/src/icon-bookmark.tsx index b9ed1d37..d1f5acb0 100644 --- a/packages/icons/src/icon-bookmark.tsx +++ b/packages/icons/src/icon-bookmark.tsx @@ -11,7 +11,7 @@ const IconBookmark = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-branch.tsx b/packages/icons/src/icon-branch.tsx index f12a6c00..c565f6f2 100644 --- a/packages/icons/src/icon-branch.tsx +++ b/packages/icons/src/icon-branch.tsx @@ -11,7 +11,7 @@ const IconBranch = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-briefcase.tsx b/packages/icons/src/icon-briefcase.tsx index ae4d29a0..17c102f2 100644 --- a/packages/icons/src/icon-briefcase.tsx +++ b/packages/icons/src/icon-briefcase.tsx @@ -11,7 +11,7 @@ const IconBriefcase = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-broadcast.tsx b/packages/icons/src/icon-broadcast.tsx index d7fe14ff..18920254 100644 --- a/packages/icons/src/icon-broadcast.tsx +++ b/packages/icons/src/icon-broadcast.tsx @@ -11,7 +11,7 @@ const IconBroadcast = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-brush.tsx b/packages/icons/src/icon-brush.tsx index 14e45e5e..adc61dcb 100644 --- a/packages/icons/src/icon-brush.tsx +++ b/packages/icons/src/icon-brush.tsx @@ -11,7 +11,7 @@ const IconBrush = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-bullish.tsx b/packages/icons/src/icon-bullish.tsx index 074b1722..aa8ef00b 100644 --- a/packages/icons/src/icon-bullish.tsx +++ b/packages/icons/src/icon-bullish.tsx @@ -11,7 +11,7 @@ const IconBullish = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-business-card.tsx b/packages/icons/src/icon-business-card.tsx index aa1eb0c2..62f912ac 100644 --- a/packages/icons/src/icon-business-card.tsx +++ b/packages/icons/src/icon-business-card.tsx @@ -11,7 +11,7 @@ const IconBusinessCard = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-business.tsx b/packages/icons/src/icon-business.tsx index 48abf324..66a2c46a 100644 --- a/packages/icons/src/icon-business.tsx +++ b/packages/icons/src/icon-business.tsx @@ -11,7 +11,7 @@ const IconBusiness = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-calculator.tsx b/packages/icons/src/icon-calculator.tsx index e7c3509b..add6aad7 100644 --- a/packages/icons/src/icon-calculator.tsx +++ b/packages/icons/src/icon-calculator.tsx @@ -11,7 +11,7 @@ const IconCalculator = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-calendar.tsx b/packages/icons/src/icon-calendar.tsx index e832ee19..6334271a 100644 --- a/packages/icons/src/icon-calendar.tsx +++ b/packages/icons/src/icon-calendar.tsx @@ -11,7 +11,7 @@ const IconCalendar = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-callback.tsx b/packages/icons/src/icon-callback.tsx index 7e45194f..f30067a1 100644 --- a/packages/icons/src/icon-callback.tsx +++ b/packages/icons/src/icon-callback.tsx @@ -11,7 +11,7 @@ const IconCallback = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-cancel-file.tsx b/packages/icons/src/icon-cancel-file.tsx index 422f30c0..2b255850 100644 --- a/packages/icons/src/icon-cancel-file.tsx +++ b/packages/icons/src/icon-cancel-file.tsx @@ -11,7 +11,7 @@ const IconCancelFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-candle-sticks.tsx b/packages/icons/src/icon-candle-sticks.tsx index 0ff9db7f..d73572e4 100644 --- a/packages/icons/src/icon-candle-sticks.tsx +++ b/packages/icons/src/icon-candle-sticks.tsx @@ -11,7 +11,7 @@ const IconCandleSticks = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-check-circle.tsx b/packages/icons/src/icon-check-circle.tsx index 94b46667..e5f0eb7d 100644 --- a/packages/icons/src/icon-check-circle.tsx +++ b/packages/icons/src/icon-check-circle.tsx @@ -11,7 +11,7 @@ const IconCheckCircle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-check-circle1.tsx b/packages/icons/src/icon-check-circle1.tsx index d6e1e703..0579a8f3 100644 --- a/packages/icons/src/icon-check-circle1.tsx +++ b/packages/icons/src/icon-check-circle1.tsx @@ -11,7 +11,7 @@ const IconCheckCircle1 = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-check-file.tsx b/packages/icons/src/icon-check-file.tsx index dfc904ea..220a7933 100644 --- a/packages/icons/src/icon-check-file.tsx +++ b/packages/icons/src/icon-check-file.tsx @@ -11,7 +11,7 @@ const IconCheckFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-check-fill.tsx b/packages/icons/src/icon-check-fill.tsx index 1539469b..70b41108 100644 --- a/packages/icons/src/icon-check-fill.tsx +++ b/packages/icons/src/icon-check-fill.tsx @@ -11,7 +11,7 @@ const IconCheckFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-check-square.tsx b/packages/icons/src/icon-check-square.tsx index 2cebbe18..71eab0c1 100644 --- a/packages/icons/src/icon-check-square.tsx +++ b/packages/icons/src/icon-check-square.tsx @@ -11,7 +11,7 @@ const IconCheckSquare = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-checkmark.tsx b/packages/icons/src/icon-checkmark.tsx index c96b1d5b..5aed7923 100644 --- a/packages/icons/src/icon-checkmark.tsx +++ b/packages/icons/src/icon-checkmark.tsx @@ -11,7 +11,7 @@ const IconCheckmark = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-chrome.tsx b/packages/icons/src/icon-chrome.tsx index bc707939..cc840348 100644 --- a/packages/icons/src/icon-chrome.tsx +++ b/packages/icons/src/icon-chrome.tsx @@ -11,7 +11,7 @@ const IconChrome = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-circle-share.tsx b/packages/icons/src/icon-circle-share.tsx index edf9638b..674d0917 100644 --- a/packages/icons/src/icon-circle-share.tsx +++ b/packages/icons/src/icon-circle-share.tsx @@ -11,7 +11,7 @@ const IconCircleShare = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-close-circle.tsx b/packages/icons/src/icon-close-circle.tsx index 4c6a2546..5116e1c1 100644 --- a/packages/icons/src/icon-close-circle.tsx +++ b/packages/icons/src/icon-close-circle.tsx @@ -11,7 +11,7 @@ const IconCloseCircle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-close-fill.tsx b/packages/icons/src/icon-close-fill.tsx index 77ff8477..04a19d9a 100644 --- a/packages/icons/src/icon-close-fill.tsx +++ b/packages/icons/src/icon-close-fill.tsx @@ -11,7 +11,7 @@ const IconCloseFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-close.tsx b/packages/icons/src/icon-close.tsx index ad80184c..8e6482bb 100644 --- a/packages/icons/src/icon-close.tsx +++ b/packages/icons/src/icon-close.tsx @@ -11,7 +11,7 @@ const IconClose = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-cloud-download.tsx b/packages/icons/src/icon-cloud-download.tsx index 302168f4..b1860c4f 100644 --- a/packages/icons/src/icon-cloud-download.tsx +++ b/packages/icons/src/icon-cloud-download.tsx @@ -11,7 +11,7 @@ const IconCloudDownload = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-cloud-upload.tsx b/packages/icons/src/icon-cloud-upload.tsx index c58d5fb4..f7c0fe2d 100644 --- a/packages/icons/src/icon-cloud-upload.tsx +++ b/packages/icons/src/icon-cloud-upload.tsx @@ -11,7 +11,7 @@ const IconCloudUpload = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-code.tsx b/packages/icons/src/icon-code.tsx index 06b1ad4b..bef8a9ba 100644 --- a/packages/icons/src/icon-code.tsx +++ b/packages/icons/src/icon-code.tsx @@ -11,7 +11,7 @@ const IconCode = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-collect.tsx b/packages/icons/src/icon-collect.tsx index 268e3962..9ca8b50e 100644 --- a/packages/icons/src/icon-collect.tsx +++ b/packages/icons/src/icon-collect.tsx @@ -11,7 +11,7 @@ const IconCollect = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-colorlens.tsx b/packages/icons/src/icon-colorlens.tsx index ac9f6637..f4bef93b 100644 --- a/packages/icons/src/icon-colorlens.tsx +++ b/packages/icons/src/icon-colorlens.tsx @@ -11,7 +11,7 @@ const IconColorlens = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-comment-square.tsx b/packages/icons/src/icon-comment-square.tsx index b217da1c..17c97dcb 100644 --- a/packages/icons/src/icon-comment-square.tsx +++ b/packages/icons/src/icon-comment-square.tsx @@ -11,7 +11,7 @@ const IconCommentSquare = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-comment.tsx b/packages/icons/src/icon-comment.tsx index 9d396bf1..9235cd2a 100644 --- a/packages/icons/src/icon-comment.tsx +++ b/packages/icons/src/icon-comment.tsx @@ -11,7 +11,7 @@ const IconComment = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-conference.tsx b/packages/icons/src/icon-conference.tsx index 0e94de6a..935ce785 100644 --- a/packages/icons/src/icon-conference.tsx +++ b/packages/icons/src/icon-conference.tsx @@ -11,7 +11,7 @@ const IconConference = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-copyright.tsx b/packages/icons/src/icon-copyright.tsx index d60052fa..1071d005 100644 --- a/packages/icons/src/icon-copyright.tsx +++ b/packages/icons/src/icon-copyright.tsx @@ -11,7 +11,7 @@ const IconCopyright = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-create-archive.tsx b/packages/icons/src/icon-create-archive.tsx index ddee8624..fca201ad 100644 --- a/packages/icons/src/icon-create-archive.tsx +++ b/packages/icons/src/icon-create-archive.tsx @@ -11,7 +11,7 @@ const IconCreateArchive = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-credit-card.tsx b/packages/icons/src/icon-credit-card.tsx index e9ee31db..f3fa8bcb 100644 --- a/packages/icons/src/icon-credit-card.tsx +++ b/packages/icons/src/icon-credit-card.tsx @@ -11,7 +11,7 @@ const IconCreditCard = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-css.tsx b/packages/icons/src/icon-css.tsx index 4fb6371c..8da71cdc 100644 --- a/packages/icons/src/icon-css.tsx +++ b/packages/icons/src/icon-css.tsx @@ -11,7 +11,7 @@ const IconCss = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-currency-exchange.tsx b/packages/icons/src/icon-currency-exchange.tsx index b3510f23..860d8bdf 100644 --- a/packages/icons/src/icon-currency-exchange.tsx +++ b/packages/icons/src/icon-currency-exchange.tsx @@ -11,7 +11,7 @@ const IconCurrencyExchange = forwardRef((props, ref) = height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-cursor.tsx b/packages/icons/src/icon-cursor.tsx index f2e56621..5d83f635 100644 --- a/packages/icons/src/icon-cursor.tsx +++ b/packages/icons/src/icon-cursor.tsx @@ -11,7 +11,7 @@ const IconCursor = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-customer-service.tsx b/packages/icons/src/icon-customer-service.tsx index 6b1a56f1..fdb7f0f0 100644 --- a/packages/icons/src/icon-customer-service.tsx +++ b/packages/icons/src/icon-customer-service.tsx @@ -11,7 +11,7 @@ const IconCustomerService = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-customer-support.tsx b/packages/icons/src/icon-customer-support.tsx index 12a6496b..3b00ab22 100644 --- a/packages/icons/src/icon-customer-support.tsx +++ b/packages/icons/src/icon-customer-support.tsx @@ -11,7 +11,7 @@ const IconCustomerSupport = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-del-team.tsx b/packages/icons/src/icon-del-team.tsx index da6ee7c1..075de4d3 100644 --- a/packages/icons/src/icon-del-team.tsx +++ b/packages/icons/src/icon-del-team.tsx @@ -11,7 +11,7 @@ const IconDelTeam = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-del-user.tsx b/packages/icons/src/icon-del-user.tsx index 3115cd86..88dc41ce 100644 --- a/packages/icons/src/icon-del-user.tsx +++ b/packages/icons/src/icon-del-user.tsx @@ -11,7 +11,7 @@ const IconDelUser = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-delete-archive.tsx b/packages/icons/src/icon-delete-archive.tsx index 1e69dad4..0a3d36c7 100644 --- a/packages/icons/src/icon-delete-archive.tsx +++ b/packages/icons/src/icon-delete-archive.tsx @@ -11,7 +11,7 @@ const IconDeleteArchive = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-delete-file.tsx b/packages/icons/src/icon-delete-file.tsx index 00be8136..2d4dd074 100644 --- a/packages/icons/src/icon-delete-file.tsx +++ b/packages/icons/src/icon-delete-file.tsx @@ -11,7 +11,7 @@ const IconDeleteFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-delivered.tsx b/packages/icons/src/icon-delivered.tsx index a841f8bc..73d3a62b 100644 --- a/packages/icons/src/icon-delivered.tsx +++ b/packages/icons/src/icon-delivered.tsx @@ -11,7 +11,7 @@ const IconDelivered = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-delivery.tsx b/packages/icons/src/icon-delivery.tsx index 7833d7ba..e396ef6c 100644 --- a/packages/icons/src/icon-delivery.tsx +++ b/packages/icons/src/icon-delivery.tsx @@ -11,7 +11,7 @@ const IconDelivery = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-department.tsx b/packages/icons/src/icon-department.tsx index fd64a098..5e3e2d2a 100644 --- a/packages/icons/src/icon-department.tsx +++ b/packages/icons/src/icon-department.tsx @@ -11,7 +11,7 @@ const IconDepartment = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-desktop.tsx b/packages/icons/src/icon-desktop.tsx index 6265a111..9fe2a677 100644 --- a/packages/icons/src/icon-desktop.tsx +++ b/packages/icons/src/icon-desktop.tsx @@ -11,7 +11,7 @@ const IconDesktop = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-diploma.tsx b/packages/icons/src/icon-diploma.tsx index 233368e7..fca88dde 100644 --- a/packages/icons/src/icon-diploma.tsx +++ b/packages/icons/src/icon-diploma.tsx @@ -11,7 +11,7 @@ const IconDiploma = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-dislike.tsx b/packages/icons/src/icon-dislike.tsx index 9a294568..d078bbf0 100644 --- a/packages/icons/src/icon-dislike.tsx +++ b/packages/icons/src/icon-dislike.tsx @@ -11,7 +11,7 @@ const IconDislike = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-doc-file.tsx b/packages/icons/src/icon-doc-file.tsx index b6323451..ba6d6bc2 100644 --- a/packages/icons/src/icon-doc-file.tsx +++ b/packages/icons/src/icon-doc-file.tsx @@ -11,7 +11,7 @@ const IconDocFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-document.tsx b/packages/icons/src/icon-document.tsx index 696fa8db..c81203d7 100644 --- a/packages/icons/src/icon-document.tsx +++ b/packages/icons/src/icon-document.tsx @@ -11,7 +11,7 @@ const IconDocument = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-donate.tsx b/packages/icons/src/icon-donate.tsx index 4191b36b..aa574679 100644 --- a/packages/icons/src/icon-donate.tsx +++ b/packages/icons/src/icon-donate.tsx @@ -11,7 +11,7 @@ const IconDonate = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-down-fill.tsx b/packages/icons/src/icon-down-fill.tsx index 9dc164d1..1f23ea06 100644 --- a/packages/icons/src/icon-down-fill.tsx +++ b/packages/icons/src/icon-down-fill.tsx @@ -11,7 +11,7 @@ const IconDownFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-down.tsx b/packages/icons/src/icon-down.tsx index 765da764..3e5be8b3 100644 --- a/packages/icons/src/icon-down.tsx +++ b/packages/icons/src/icon-down.tsx @@ -11,7 +11,7 @@ const IconDown = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-download.tsx b/packages/icons/src/icon-download.tsx index d56984a7..f7309ba8 100644 --- a/packages/icons/src/icon-download.tsx +++ b/packages/icons/src/icon-download.tsx @@ -11,7 +11,7 @@ const IconDownload = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-dropbox.tsx b/packages/icons/src/icon-dropbox.tsx index 49e264d0..09f829f3 100644 --- a/packages/icons/src/icon-dropbox.tsx +++ b/packages/icons/src/icon-dropbox.tsx @@ -11,7 +11,7 @@ const IconDropbox = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-edit-file.tsx b/packages/icons/src/icon-edit-file.tsx index 1e1918ae..7d266675 100644 --- a/packages/icons/src/icon-edit-file.tsx +++ b/packages/icons/src/icon-edit-file.tsx @@ -11,7 +11,7 @@ const IconEditFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-education.tsx b/packages/icons/src/icon-education.tsx index ec12efd7..eb11c580 100644 --- a/packages/icons/src/icon-education.tsx +++ b/packages/icons/src/icon-education.tsx @@ -11,7 +11,7 @@ const IconEducation = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-expired.tsx b/packages/icons/src/icon-expired.tsx index 3a95bfd2..7699d614 100644 --- a/packages/icons/src/icon-expired.tsx +++ b/packages/icons/src/icon-expired.tsx @@ -11,7 +11,7 @@ const IconExpired = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-external.tsx b/packages/icons/src/icon-external.tsx index dbae6896..58975556 100644 --- a/packages/icons/src/icon-external.tsx +++ b/packages/icons/src/icon-external.tsx @@ -11,7 +11,7 @@ const IconExternal = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-eye-close.tsx b/packages/icons/src/icon-eye-close.tsx index 079b40bf..de441ec0 100644 --- a/packages/icons/src/icon-eye-close.tsx +++ b/packages/icons/src/icon-eye-close.tsx @@ -11,7 +11,7 @@ const IconEyeClose = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-eye.tsx b/packages/icons/src/icon-eye.tsx index 6af4a99c..5bb380ed 100644 --- a/packages/icons/src/icon-eye.tsx +++ b/packages/icons/src/icon-eye.tsx @@ -11,7 +11,7 @@ const IconEye = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-face.tsx b/packages/icons/src/icon-face.tsx index f08b00d7..1c8f862a 100644 --- a/packages/icons/src/icon-face.tsx +++ b/packages/icons/src/icon-face.tsx @@ -11,7 +11,7 @@ const IconFace = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-facebook.tsx b/packages/icons/src/icon-facebook.tsx index 319991e1..674d900e 100644 --- a/packages/icons/src/icon-facebook.tsx +++ b/packages/icons/src/icon-facebook.tsx @@ -11,7 +11,7 @@ const IconFacebook = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-faq.tsx b/packages/icons/src/icon-faq.tsx index 392b240b..04fc8e84 100644 --- a/packages/icons/src/icon-faq.tsx +++ b/packages/icons/src/icon-faq.tsx @@ -11,7 +11,7 @@ const IconFaq = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-favourite-file.tsx b/packages/icons/src/icon-favourite-file.tsx index dd67ccb8..277c596d 100644 --- a/packages/icons/src/icon-favourite-file.tsx +++ b/packages/icons/src/icon-favourite-file.tsx @@ -11,7 +11,7 @@ const IconFavouriteFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-feedback.tsx b/packages/icons/src/icon-feedback.tsx index b3b6a8f8..4b6681bf 100644 --- a/packages/icons/src/icon-feedback.tsx +++ b/packages/icons/src/icon-feedback.tsx @@ -11,7 +11,7 @@ const IconFeedback = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-file-zip.tsx b/packages/icons/src/icon-file-zip.tsx index b8b1746e..4396fe65 100644 --- a/packages/icons/src/icon-file-zip.tsx +++ b/packages/icons/src/icon-file-zip.tsx @@ -11,7 +11,7 @@ const IconFileZip = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-file.tsx b/packages/icons/src/icon-file.tsx index e759b529..3d2b6615 100644 --- a/packages/icons/src/icon-file.tsx +++ b/packages/icons/src/icon-file.tsx @@ -11,7 +11,7 @@ const IconFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-fire-fill.tsx b/packages/icons/src/icon-fire-fill.tsx index 76ae3a00..2e042c21 100644 --- a/packages/icons/src/icon-fire-fill.tsx +++ b/packages/icons/src/icon-fire-fill.tsx @@ -11,7 +11,7 @@ const IconFireFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-fire.tsx b/packages/icons/src/icon-fire.tsx index 54b5b513..e33c6fab 100644 --- a/packages/icons/src/icon-fire.tsx +++ b/packages/icons/src/icon-fire.tsx @@ -11,7 +11,7 @@ const IconFire = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-forbid.tsx b/packages/icons/src/icon-forbid.tsx index 88c2111d..ea550d17 100644 --- a/packages/icons/src/icon-forbid.tsx +++ b/packages/icons/src/icon-forbid.tsx @@ -11,7 +11,7 @@ const IconForbid = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-fork.tsx b/packages/icons/src/icon-fork.tsx index 6b8934b4..c5adf7e9 100644 --- a/packages/icons/src/icon-fork.tsx +++ b/packages/icons/src/icon-fork.tsx @@ -11,7 +11,7 @@ const IconFork = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-frame.tsx b/packages/icons/src/icon-frame.tsx index c9770b93..045924ee 100644 --- a/packages/icons/src/icon-frame.tsx +++ b/packages/icons/src/icon-frame.tsx @@ -11,7 +11,7 @@ const IconFrame = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-gif.tsx b/packages/icons/src/icon-gif.tsx index 2c6bad0d..b991ea6f 100644 --- a/packages/icons/src/icon-gif.tsx +++ b/packages/icons/src/icon-gif.tsx @@ -11,7 +11,7 @@ const IconGif = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-gift.tsx b/packages/icons/src/icon-gift.tsx index 8f0e31c0..7b19c4b6 100644 --- a/packages/icons/src/icon-gift.tsx +++ b/packages/icons/src/icon-gift.tsx @@ -11,7 +11,7 @@ const IconGift = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-github.tsx b/packages/icons/src/icon-github.tsx index 9119b48c..306b621a 100644 --- a/packages/icons/src/icon-github.tsx +++ b/packages/icons/src/icon-github.tsx @@ -11,7 +11,7 @@ const IconGithub = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-google.tsx b/packages/icons/src/icon-google.tsx index c6c8f4ac..dfa75823 100644 --- a/packages/icons/src/icon-google.tsx +++ b/packages/icons/src/icon-google.tsx @@ -11,7 +11,7 @@ const IconGoogle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-hand-cursor.tsx b/packages/icons/src/icon-hand-cursor.tsx index e8ce913b..608711c4 100644 --- a/packages/icons/src/icon-hand-cursor.tsx +++ b/packages/icons/src/icon-hand-cursor.tsx @@ -11,7 +11,7 @@ const IconHandCursor = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-heart-fill.tsx b/packages/icons/src/icon-heart-fill.tsx index 24f0f1b5..0a6c4dec 100644 --- a/packages/icons/src/icon-heart-fill.tsx +++ b/packages/icons/src/icon-heart-fill.tsx @@ -11,7 +11,7 @@ const IconHeartFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-heart.tsx b/packages/icons/src/icon-heart.tsx index 38fad642..5233100a 100644 --- a/packages/icons/src/icon-heart.tsx +++ b/packages/icons/src/icon-heart.tsx @@ -11,7 +11,7 @@ const IconHeart = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-hierarchy.tsx b/packages/icons/src/icon-hierarchy.tsx index 5d7402a6..d8d8fc0d 100644 --- a/packages/icons/src/icon-hierarchy.tsx +++ b/packages/icons/src/icon-hierarchy.tsx @@ -11,7 +11,7 @@ const IconHierarchy = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-home.tsx b/packages/icons/src/icon-home.tsx index 34f6c36c..6d61c15d 100644 --- a/packages/icons/src/icon-home.tsx +++ b/packages/icons/src/icon-home.tsx @@ -11,7 +11,7 @@ const IconHome = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-html.tsx b/packages/icons/src/icon-html.tsx index 4fb6f18c..c34030c0 100644 --- a/packages/icons/src/icon-html.tsx +++ b/packages/icons/src/icon-html.tsx @@ -11,7 +11,7 @@ const IconHtml = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-id-card.tsx b/packages/icons/src/icon-id-card.tsx index 2d338b1a..abd072a3 100644 --- a/packages/icons/src/icon-id-card.tsx +++ b/packages/icons/src/icon-id-card.tsx @@ -11,7 +11,7 @@ const IconIdCard = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-idea.tsx b/packages/icons/src/icon-idea.tsx index 4efc0452..4a25b29a 100644 --- a/packages/icons/src/icon-idea.tsx +++ b/packages/icons/src/icon-idea.tsx @@ -11,7 +11,7 @@ const IconIdea = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-image-file.tsx b/packages/icons/src/icon-image-file.tsx index d0be7de4..56bdeffd 100644 --- a/packages/icons/src/icon-image-file.tsx +++ b/packages/icons/src/icon-image-file.tsx @@ -11,7 +11,7 @@ const IconImageFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-info-fill.tsx b/packages/icons/src/icon-info-fill.tsx index acc91aa1..eb441a1f 100644 --- a/packages/icons/src/icon-info-fill.tsx +++ b/packages/icons/src/icon-info-fill.tsx @@ -11,7 +11,7 @@ const IconInfoFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-info.tsx b/packages/icons/src/icon-info.tsx index 57cb7194..c77dd7cd 100644 --- a/packages/icons/src/icon-info.tsx +++ b/packages/icons/src/icon-info.tsx @@ -11,7 +11,7 @@ const IconInfo = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-inspection.tsx b/packages/icons/src/icon-inspection.tsx index 894e9bcf..66c1eb05 100644 --- a/packages/icons/src/icon-inspection.tsx +++ b/packages/icons/src/icon-inspection.tsx @@ -11,7 +11,7 @@ const IconInspection = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-instagram.tsx b/packages/icons/src/icon-instagram.tsx index 394ff40e..574871f1 100644 --- a/packages/icons/src/icon-instagram.tsx +++ b/packages/icons/src/icon-instagram.tsx @@ -11,7 +11,7 @@ const IconInstagram = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-internal.tsx b/packages/icons/src/icon-internal.tsx index 4e1ee6e6..e39a4c54 100644 --- a/packages/icons/src/icon-internal.tsx +++ b/packages/icons/src/icon-internal.tsx @@ -11,7 +11,7 @@ const IconInternal = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-key.tsx b/packages/icons/src/icon-key.tsx index cfa2965e..cb239746 100644 --- a/packages/icons/src/icon-key.tsx +++ b/packages/icons/src/icon-key.tsx @@ -11,7 +11,7 @@ const IconKey = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-laptop.tsx b/packages/icons/src/icon-laptop.tsx index b4f7ba15..b5b30128 100644 --- a/packages/icons/src/icon-laptop.tsx +++ b/packages/icons/src/icon-laptop.tsx @@ -11,7 +11,7 @@ const IconLaptop = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-left-fill.tsx b/packages/icons/src/icon-left-fill.tsx index 24355487..18638f2b 100644 --- a/packages/icons/src/icon-left-fill.tsx +++ b/packages/icons/src/icon-left-fill.tsx @@ -11,7 +11,7 @@ const IconLeftFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-left.tsx b/packages/icons/src/icon-left.tsx index 69ce21d0..62c84ad2 100644 --- a/packages/icons/src/icon-left.tsx +++ b/packages/icons/src/icon-left.tsx @@ -11,7 +11,7 @@ const IconLeft = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-library.tsx b/packages/icons/src/icon-library.tsx index 9c8f6397..995b8d19 100644 --- a/packages/icons/src/icon-library.tsx +++ b/packages/icons/src/icon-library.tsx @@ -11,7 +11,7 @@ const IconLibrary = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-link.tsx b/packages/icons/src/icon-link.tsx index 2e815eba..79cd8e6e 100644 --- a/packages/icons/src/icon-link.tsx +++ b/packages/icons/src/icon-link.tsx @@ -11,7 +11,7 @@ const IconLink = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-linkedin.tsx b/packages/icons/src/icon-linkedin.tsx index 5734829c..53eb2f15 100644 --- a/packages/icons/src/icon-linkedin.tsx +++ b/packages/icons/src/icon-linkedin.tsx @@ -11,7 +11,7 @@ const IconLinkedin = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-loader-3quarter.tsx b/packages/icons/src/icon-loader-3quarter.tsx index 8bb01cab..2ea8b32d 100644 --- a/packages/icons/src/icon-loader-3quarter.tsx +++ b/packages/icons/src/icon-loader-3quarter.tsx @@ -11,7 +11,7 @@ const IconLoader3quarter = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-loader-circle.tsx b/packages/icons/src/icon-loader-circle.tsx index cc9138b3..9cc0670f 100644 --- a/packages/icons/src/icon-loader-circle.tsx +++ b/packages/icons/src/icon-loader-circle.tsx @@ -11,7 +11,7 @@ const IconLoaderCircle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-loader-quarter.tsx b/packages/icons/src/icon-loader-quarter.tsx index 134beebf..eaf781d9 100644 --- a/packages/icons/src/icon-loader-quarter.tsx +++ b/packages/icons/src/icon-loader-quarter.tsx @@ -11,7 +11,7 @@ const IconLoaderQuarter = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-loader.tsx b/packages/icons/src/icon-loader.tsx index 53fafa16..932f1b07 100644 --- a/packages/icons/src/icon-loader.tsx +++ b/packages/icons/src/icon-loader.tsx @@ -11,7 +11,7 @@ const IconLoader = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-lock.tsx b/packages/icons/src/icon-lock.tsx index 35c4a7d4..b776d9ca 100644 --- a/packages/icons/src/icon-lock.tsx +++ b/packages/icons/src/icon-lock.tsx @@ -11,7 +11,7 @@ const IconLock = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-login.tsx b/packages/icons/src/icon-login.tsx index b29d71c4..8f855abd 100644 --- a/packages/icons/src/icon-login.tsx +++ b/packages/icons/src/icon-login.tsx @@ -11,7 +11,7 @@ const IconLogin = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-maintain.tsx b/packages/icons/src/icon-maintain.tsx index b56c9e6e..05184b69 100644 --- a/packages/icons/src/icon-maintain.tsx +++ b/packages/icons/src/icon-maintain.tsx @@ -11,7 +11,7 @@ const IconMaintain = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-manager.tsx b/packages/icons/src/icon-manager.tsx index 769efc43..87e82376 100644 --- a/packages/icons/src/icon-manager.tsx +++ b/packages/icons/src/icon-manager.tsx @@ -11,7 +11,7 @@ const IconManager = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-medal.tsx b/packages/icons/src/icon-medal.tsx index f698927a..21467628 100644 --- a/packages/icons/src/icon-medal.tsx +++ b/packages/icons/src/icon-medal.tsx @@ -11,7 +11,7 @@ const IconMedal = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-medium.tsx b/packages/icons/src/icon-medium.tsx index de29b11c..4a2a7f45 100644 --- a/packages/icons/src/icon-medium.tsx +++ b/packages/icons/src/icon-medium.tsx @@ -11,7 +11,7 @@ const IconMedium = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-minus-circle.tsx b/packages/icons/src/icon-minus-circle.tsx index 710c71e6..60f7ef47 100644 --- a/packages/icons/src/icon-minus-circle.tsx +++ b/packages/icons/src/icon-minus-circle.tsx @@ -11,7 +11,7 @@ const IconMinusCircle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-minus-fill.tsx b/packages/icons/src/icon-minus-fill.tsx index 2b4e94f9..f291979e 100644 --- a/packages/icons/src/icon-minus-fill.tsx +++ b/packages/icons/src/icon-minus-fill.tsx @@ -11,7 +11,7 @@ const IconMinusFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-minus.tsx b/packages/icons/src/icon-minus.tsx index 4805bc75..4e169b8d 100644 --- a/packages/icons/src/icon-minus.tsx +++ b/packages/icons/src/icon-minus.tsx @@ -11,7 +11,7 @@ const IconMinus = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-money-token.tsx b/packages/icons/src/icon-money-token.tsx index 74fb12e0..7bacd950 100644 --- a/packages/icons/src/icon-money-token.tsx +++ b/packages/icons/src/icon-money-token.tsx @@ -11,7 +11,7 @@ const IconMoneyToken = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-money-transfer.tsx b/packages/icons/src/icon-money-transfer.tsx index b73b47b8..885e125c 100644 --- a/packages/icons/src/icon-money-transfer.tsx +++ b/packages/icons/src/icon-money-transfer.tsx @@ -11,7 +11,7 @@ const IconMoneyTransfer = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-multiple-inputs.tsx b/packages/icons/src/icon-multiple-inputs.tsx index 1cef3731..c4f7e510 100644 --- a/packages/icons/src/icon-multiple-inputs.tsx +++ b/packages/icons/src/icon-multiple-inputs.tsx @@ -11,7 +11,7 @@ const IconMultipleInputs = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-music.tsx b/packages/icons/src/icon-music.tsx index 6db750b7..767b23d2 100644 --- a/packages/icons/src/icon-music.tsx +++ b/packages/icons/src/icon-music.tsx @@ -11,7 +11,7 @@ const IconMusic = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-news.tsx b/packages/icons/src/icon-news.tsx index 8e811b52..c15ac52a 100644 --- a/packages/icons/src/icon-news.tsx +++ b/packages/icons/src/icon-news.tsx @@ -11,7 +11,7 @@ const IconNews = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-no-idea.tsx b/packages/icons/src/icon-no-idea.tsx index 8527c742..a3c7f176 100644 --- a/packages/icons/src/icon-no-idea.tsx +++ b/packages/icons/src/icon-no-idea.tsx @@ -11,7 +11,7 @@ const IconNoIdea = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-note.tsx b/packages/icons/src/icon-note.tsx index 4b904800..88bad82f 100644 --- a/packages/icons/src/icon-note.tsx +++ b/packages/icons/src/icon-note.tsx @@ -11,7 +11,7 @@ const IconNote = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-online-support.tsx b/packages/icons/src/icon-online-support.tsx index 47514dc5..73c90978 100644 --- a/packages/icons/src/icon-online-support.tsx +++ b/packages/icons/src/icon-online-support.tsx @@ -11,7 +11,7 @@ const IconOnlineSupport = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-open-archive.tsx b/packages/icons/src/icon-open-archive.tsx index 8a34e1eb..be522985 100644 --- a/packages/icons/src/icon-open-archive.tsx +++ b/packages/icons/src/icon-open-archive.tsx @@ -11,7 +11,7 @@ const IconOpenArchive = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-opened-folder.tsx b/packages/icons/src/icon-opened-folder.tsx index 5ee07557..a8f39f66 100644 --- a/packages/icons/src/icon-opened-folder.tsx +++ b/packages/icons/src/icon-opened-folder.tsx @@ -11,7 +11,7 @@ const IconOpenedFolder = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-org-unit.tsx b/packages/icons/src/icon-org-unit.tsx index fcff18dc..6c90c065 100644 --- a/packages/icons/src/icon-org-unit.tsx +++ b/packages/icons/src/icon-org-unit.tsx @@ -11,7 +11,7 @@ const IconOrgUnit = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-organization.tsx b/packages/icons/src/icon-organization.tsx index 70ee5dcb..201305f2 100644 --- a/packages/icons/src/icon-organization.tsx +++ b/packages/icons/src/icon-organization.tsx @@ -11,7 +11,7 @@ const IconOrganization = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-overtime.tsx b/packages/icons/src/icon-overtime.tsx index 601e59e9..f94fe221 100644 --- a/packages/icons/src/icon-overtime.tsx +++ b/packages/icons/src/icon-overtime.tsx @@ -11,7 +11,7 @@ const IconOvertime = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-package.tsx b/packages/icons/src/icon-package.tsx index 6e1e34af..5024577c 100644 --- a/packages/icons/src/icon-package.tsx +++ b/packages/icons/src/icon-package.tsx @@ -11,7 +11,7 @@ const IconPackage = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-paid.tsx b/packages/icons/src/icon-paid.tsx index 8c3e8c2c..8eca4b2c 100644 --- a/packages/icons/src/icon-paid.tsx +++ b/packages/icons/src/icon-paid.tsx @@ -11,7 +11,7 @@ const IconPaid = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-parking.tsx b/packages/icons/src/icon-parking.tsx index f8ce0e5b..527c1686 100644 --- a/packages/icons/src/icon-parking.tsx +++ b/packages/icons/src/icon-parking.tsx @@ -11,7 +11,7 @@ const IconParking = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-picture.tsx b/packages/icons/src/icon-picture.tsx index 1f46c3da..64cd64c3 100644 --- a/packages/icons/src/icon-picture.tsx +++ b/packages/icons/src/icon-picture.tsx @@ -11,7 +11,7 @@ const IconPicture = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-pie-chart.tsx b/packages/icons/src/icon-pie-chart.tsx index e82f69d8..185791e4 100644 --- a/packages/icons/src/icon-pie-chart.tsx +++ b/packages/icons/src/icon-pie-chart.tsx @@ -11,7 +11,7 @@ const IconPieChart = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-play-fill.tsx b/packages/icons/src/icon-play-fill.tsx index 22424360..bb90e832 100644 --- a/packages/icons/src/icon-play-fill.tsx +++ b/packages/icons/src/icon-play-fill.tsx @@ -11,7 +11,7 @@ const IconPlayFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-plus-circle.tsx b/packages/icons/src/icon-plus-circle.tsx index c1265822..a3425671 100644 --- a/packages/icons/src/icon-plus-circle.tsx +++ b/packages/icons/src/icon-plus-circle.tsx @@ -11,7 +11,7 @@ const IconPlusCircle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-plus-fill.tsx b/packages/icons/src/icon-plus-fill.tsx index b6168fa2..f98bca20 100644 --- a/packages/icons/src/icon-plus-fill.tsx +++ b/packages/icons/src/icon-plus-fill.tsx @@ -11,7 +11,7 @@ const IconPlusFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-plus.tsx b/packages/icons/src/icon-plus.tsx index b42fce52..a0f212e2 100644 --- a/packages/icons/src/icon-plus.tsx +++ b/packages/icons/src/icon-plus.tsx @@ -11,7 +11,7 @@ const IconPlus = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-priority-high.tsx b/packages/icons/src/icon-priority-high.tsx index 189cb32d..ce8e40d6 100644 --- a/packages/icons/src/icon-priority-high.tsx +++ b/packages/icons/src/icon-priority-high.tsx @@ -11,7 +11,7 @@ const IconPriorityHigh = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-priority-low.tsx b/packages/icons/src/icon-priority-low.tsx index e9b79992..5c8368ff 100644 --- a/packages/icons/src/icon-priority-low.tsx +++ b/packages/icons/src/icon-priority-low.tsx @@ -11,7 +11,7 @@ const IconPriorityLow = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-priority-medium.tsx b/packages/icons/src/icon-priority-medium.tsx index 6e53fcf0..83e213bf 100644 --- a/packages/icons/src/icon-priority-medium.tsx +++ b/packages/icons/src/icon-priority-medium.tsx @@ -11,7 +11,7 @@ const IconPriorityMedium = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-privacy.tsx b/packages/icons/src/icon-privacy.tsx index 820c085a..8c10299d 100644 --- a/packages/icons/src/icon-privacy.tsx +++ b/packages/icons/src/icon-privacy.tsx @@ -11,7 +11,7 @@ const IconPrivacy = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-process.tsx b/packages/icons/src/icon-process.tsx index ec0bd0eb..4c053a8f 100644 --- a/packages/icons/src/icon-process.tsx +++ b/packages/icons/src/icon-process.tsx @@ -11,7 +11,7 @@ const IconProcess = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-projector.tsx b/packages/icons/src/icon-projector.tsx index 60192e6d..52e6bd7b 100644 --- a/packages/icons/src/icon-projector.tsx +++ b/packages/icons/src/icon-projector.tsx @@ -11,7 +11,7 @@ const IconProjector = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-psd.tsx b/packages/icons/src/icon-psd.tsx index 443ea4c5..11d5ebbc 100644 --- a/packages/icons/src/icon-psd.tsx +++ b/packages/icons/src/icon-psd.tsx @@ -11,7 +11,7 @@ const IconPsd = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-puzzle.tsx b/packages/icons/src/icon-puzzle.tsx index 30c6dc87..9c965e62 100644 --- a/packages/icons/src/icon-puzzle.tsx +++ b/packages/icons/src/icon-puzzle.tsx @@ -11,7 +11,7 @@ const IconPuzzle = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-qrcode.tsx b/packages/icons/src/icon-qrcode.tsx index a8aed207..d11a0f85 100644 --- a/packages/icons/src/icon-qrcode.tsx +++ b/packages/icons/src/icon-qrcode.tsx @@ -11,7 +11,7 @@ const IconQrcode = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-question-fill.tsx b/packages/icons/src/icon-question-fill.tsx index 459e6a4d..34bb9443 100644 --- a/packages/icons/src/icon-question-fill.tsx +++ b/packages/icons/src/icon-question-fill.tsx @@ -11,7 +11,7 @@ const IconQuestionFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-questions.tsx b/packages/icons/src/icon-questions.tsx index 72b174a3..ad86f7fc 100644 --- a/packages/icons/src/icon-questions.tsx +++ b/packages/icons/src/icon-questions.tsx @@ -11,7 +11,7 @@ const IconQuestions = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-rating.tsx b/packages/icons/src/icon-rating.tsx index 3df3370b..2341f98a 100644 --- a/packages/icons/src/icon-rating.tsx +++ b/packages/icons/src/icon-rating.tsx @@ -11,7 +11,7 @@ const IconRating = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-reading.tsx b/packages/icons/src/icon-reading.tsx index ce7f6bd2..f6a69b23 100644 --- a/packages/icons/src/icon-reading.tsx +++ b/packages/icons/src/icon-reading.tsx @@ -11,7 +11,7 @@ const IconReading = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-redo.tsx b/packages/icons/src/icon-redo.tsx index c7a1afb6..4d4fa522 100644 --- a/packages/icons/src/icon-redo.tsx +++ b/packages/icons/src/icon-redo.tsx @@ -11,7 +11,7 @@ const IconRedo = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-registration-circle.tsx b/packages/icons/src/icon-registration-circle.tsx index 1f9b263d..f6c80a4f 100644 --- a/packages/icons/src/icon-registration-circle.tsx +++ b/packages/icons/src/icon-registration-circle.tsx @@ -11,7 +11,7 @@ const IconRegistrationCircle = forwardRef((props, ref) height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-resize-all.tsx b/packages/icons/src/icon-resize-all.tsx index fbe00747..ef9f32ec 100644 --- a/packages/icons/src/icon-resize-all.tsx +++ b/packages/icons/src/icon-resize-all.tsx @@ -11,7 +11,7 @@ const IconResizeAll = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-resize-diagonal.tsx b/packages/icons/src/icon-resize-diagonal.tsx index aa4bbb9e..af944950 100644 --- a/packages/icons/src/icon-resize-diagonal.tsx +++ b/packages/icons/src/icon-resize-diagonal.tsx @@ -11,7 +11,7 @@ const IconResizeDiagonal = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-resize-hr.tsx b/packages/icons/src/icon-resize-hr.tsx index ac595d69..45249bf7 100644 --- a/packages/icons/src/icon-resize-hr.tsx +++ b/packages/icons/src/icon-resize-hr.tsx @@ -11,7 +11,7 @@ const IconResizeHr = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-resize-ver.tsx b/packages/icons/src/icon-resize-ver.tsx index b34197f2..14ec5210 100644 --- a/packages/icons/src/icon-resize-ver.tsx +++ b/packages/icons/src/icon-resize-ver.tsx @@ -11,7 +11,7 @@ const IconResizeVer = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-right-fill.tsx b/packages/icons/src/icon-right-fill.tsx index 435f9b70..b627e597 100644 --- a/packages/icons/src/icon-right-fill.tsx +++ b/packages/icons/src/icon-right-fill.tsx @@ -11,7 +11,7 @@ const IconRightFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-right.tsx b/packages/icons/src/icon-right.tsx index db2a54f8..6ca444af 100644 --- a/packages/icons/src/icon-right.tsx +++ b/packages/icons/src/icon-right.tsx @@ -11,7 +11,7 @@ const IconRight = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-ruler.tsx b/packages/icons/src/icon-ruler.tsx index 3daadc27..6f77137e 100644 --- a/packages/icons/src/icon-ruler.tsx +++ b/packages/icons/src/icon-ruler.tsx @@ -11,7 +11,7 @@ const IconRuler = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-scan.tsx b/packages/icons/src/icon-scan.tsx index 202872e5..cb6b33f0 100644 --- a/packages/icons/src/icon-scan.tsx +++ b/packages/icons/src/icon-scan.tsx @@ -11,7 +11,7 @@ const IconScan = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-search-reverse.tsx b/packages/icons/src/icon-search-reverse.tsx index 9682e69f..6cfaab9d 100644 --- a/packages/icons/src/icon-search-reverse.tsx +++ b/packages/icons/src/icon-search-reverse.tsx @@ -11,7 +11,7 @@ const IconSearchReverse = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-search.tsx b/packages/icons/src/icon-search.tsx index 32675bfd..2b89f988 100644 --- a/packages/icons/src/icon-search.tsx +++ b/packages/icons/src/icon-search.tsx @@ -11,7 +11,7 @@ const IconSearch = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-setting.tsx b/packages/icons/src/icon-setting.tsx index 938bca66..fb08b28a 100644 --- a/packages/icons/src/icon-setting.tsx +++ b/packages/icons/src/icon-setting.tsx @@ -11,7 +11,7 @@ const IconSetting = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-settings.tsx b/packages/icons/src/icon-settings.tsx index 36fd5567..91faa7ae 100644 --- a/packages/icons/src/icon-settings.tsx +++ b/packages/icons/src/icon-settings.tsx @@ -11,7 +11,7 @@ const IconSettings = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-share.tsx b/packages/icons/src/icon-share.tsx index bfcba08e..166bc40f 100644 --- a/packages/icons/src/icon-share.tsx +++ b/packages/icons/src/icon-share.tsx @@ -11,7 +11,7 @@ const IconShare = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-shop.tsx b/packages/icons/src/icon-shop.tsx index 7f518710..ab723d36 100644 --- a/packages/icons/src/icon-shop.tsx +++ b/packages/icons/src/icon-shop.tsx @@ -11,7 +11,7 @@ const IconShop = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-signature.tsx b/packages/icons/src/icon-signature.tsx index 4da25f9e..8ec8b861 100644 --- a/packages/icons/src/icon-signature.tsx +++ b/packages/icons/src/icon-signature.tsx @@ -11,7 +11,7 @@ const IconSignature = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-skin.tsx b/packages/icons/src/icon-skin.tsx index 47306963..3cc2f805 100644 --- a/packages/icons/src/icon-skin.tsx +++ b/packages/icons/src/icon-skin.tsx @@ -11,7 +11,7 @@ const IconSkin = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-skype.tsx b/packages/icons/src/icon-skype.tsx index fd74ade0..c5b7062c 100644 --- a/packages/icons/src/icon-skype.tsx +++ b/packages/icons/src/icon-skype.tsx @@ -11,7 +11,7 @@ const IconSkype = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-slack.tsx b/packages/icons/src/icon-slack.tsx index dc1135cf..ca47993e 100644 --- a/packages/icons/src/icon-slack.tsx +++ b/packages/icons/src/icon-slack.tsx @@ -11,7 +11,7 @@ const IconSlack = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-speaker.tsx b/packages/icons/src/icon-speaker.tsx index d31c0a91..a8d43a33 100644 --- a/packages/icons/src/icon-speaker.tsx +++ b/packages/icons/src/icon-speaker.tsx @@ -11,7 +11,7 @@ const IconSpeaker = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-split-horizontal.tsx b/packages/icons/src/icon-split-horizontal.tsx index c610121f..a6883b97 100644 --- a/packages/icons/src/icon-split-horizontal.tsx +++ b/packages/icons/src/icon-split-horizontal.tsx @@ -11,7 +11,7 @@ const IconSplitHorizontal = forwardRef((props, ref) => height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-split-vertical.tsx b/packages/icons/src/icon-split-vertical.tsx index a2e50eab..f1044910 100644 --- a/packages/icons/src/icon-split-vertical.tsx +++ b/packages/icons/src/icon-split-vertical.tsx @@ -11,7 +11,7 @@ const IconSplitVertical = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-star-fill.tsx b/packages/icons/src/icon-star-fill.tsx index a105c08e..e818a95f 100644 --- a/packages/icons/src/icon-star-fill.tsx +++ b/packages/icons/src/icon-star-fill.tsx @@ -11,7 +11,7 @@ const IconStarFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-star.tsx b/packages/icons/src/icon-star.tsx index ee3f45ca..809d173d 100644 --- a/packages/icons/src/icon-star.tsx +++ b/packages/icons/src/icon-star.tsx @@ -11,7 +11,7 @@ const IconStar = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-statistics.tsx b/packages/icons/src/icon-statistics.tsx index 305a42be..9171c047 100644 --- a/packages/icons/src/icon-statistics.tsx +++ b/packages/icons/src/icon-statistics.tsx @@ -11,7 +11,7 @@ const IconStatistics = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-structure.tsx b/packages/icons/src/icon-structure.tsx index 61c45a39..5c32ee89 100644 --- a/packages/icons/src/icon-structure.tsx +++ b/packages/icons/src/icon-structure.tsx @@ -11,7 +11,7 @@ const IconStructure = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-support.tsx b/packages/icons/src/icon-support.tsx index f53d6604..25dfa076 100644 --- a/packages/icons/src/icon-support.tsx +++ b/packages/icons/src/icon-support.tsx @@ -11,7 +11,7 @@ const IconSupport = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-survey.tsx b/packages/icons/src/icon-survey.tsx index 9ae1e41b..afae4f2f 100644 --- a/packages/icons/src/icon-survey.tsx +++ b/packages/icons/src/icon-survey.tsx @@ -11,7 +11,7 @@ const IconSurvey = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-switch-user.tsx b/packages/icons/src/icon-switch-user.tsx index f0b3ec52..b1beee74 100644 --- a/packages/icons/src/icon-switch-user.tsx +++ b/packages/icons/src/icon-switch-user.tsx @@ -11,7 +11,7 @@ const IconSwitchUser = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-switch.tsx b/packages/icons/src/icon-switch.tsx index b5233778..776e385c 100644 --- a/packages/icons/src/icon-switch.tsx +++ b/packages/icons/src/icon-switch.tsx @@ -11,7 +11,7 @@ const IconSwitch = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-sync.tsx b/packages/icons/src/icon-sync.tsx index 03288cc6..31fdf0b9 100644 --- a/packages/icons/src/icon-sync.tsx +++ b/packages/icons/src/icon-sync.tsx @@ -11,7 +11,7 @@ const IconSync = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-tags.tsx b/packages/icons/src/icon-tags.tsx index 1bb8ddb3..bfd3e608 100644 --- a/packages/icons/src/icon-tags.tsx +++ b/packages/icons/src/icon-tags.tsx @@ -11,7 +11,7 @@ const IconTags = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-team.tsx b/packages/icons/src/icon-team.tsx index f1be114b..066c44bc 100644 --- a/packages/icons/src/icon-team.tsx +++ b/packages/icons/src/icon-team.tsx @@ -11,7 +11,7 @@ const IconTeam = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-todo-list.tsx b/packages/icons/src/icon-todo-list.tsx index d5a2f4f3..245a8594 100644 --- a/packages/icons/src/icon-todo-list.tsx +++ b/packages/icons/src/icon-todo-list.tsx @@ -11,7 +11,7 @@ const IconTodoList = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-trademark.tsx b/packages/icons/src/icon-trademark.tsx index d23da09c..6ce48646 100644 --- a/packages/icons/src/icon-trademark.tsx +++ b/packages/icons/src/icon-trademark.tsx @@ -11,7 +11,7 @@ const IconTrademark = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-trash.tsx b/packages/icons/src/icon-trash.tsx index 93b0f77c..73518b5b 100644 --- a/packages/icons/src/icon-trash.tsx +++ b/packages/icons/src/icon-trash.tsx @@ -11,7 +11,7 @@ const IconTrash = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-twitter.tsx b/packages/icons/src/icon-twitter.tsx index d3b1a632..dc47549f 100644 --- a/packages/icons/src/icon-twitter.tsx +++ b/packages/icons/src/icon-twitter.tsx @@ -11,7 +11,7 @@ const IconTwitter = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-undo.tsx b/packages/icons/src/icon-undo.tsx index 878c3517..2f4730c6 100644 --- a/packages/icons/src/icon-undo.tsx +++ b/packages/icons/src/icon-undo.tsx @@ -11,7 +11,7 @@ const IconUndo = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-unlock.tsx b/packages/icons/src/icon-unlock.tsx index abb4ad5e..bfce78f2 100644 --- a/packages/icons/src/icon-unlock.tsx +++ b/packages/icons/src/icon-unlock.tsx @@ -11,7 +11,7 @@ const IconUnlock = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-up-fill.tsx b/packages/icons/src/icon-up-fill.tsx index fd396467..1b9c5968 100644 --- a/packages/icons/src/icon-up-fill.tsx +++ b/packages/icons/src/icon-up-fill.tsx @@ -11,7 +11,7 @@ const IconUpFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-up.tsx b/packages/icons/src/icon-up.tsx index f0501a37..d17d2a95 100644 --- a/packages/icons/src/icon-up.tsx +++ b/packages/icons/src/icon-up.tsx @@ -11,7 +11,7 @@ const IconUp = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-upload.tsx b/packages/icons/src/icon-upload.tsx index 52a2a63b..95923c40 100644 --- a/packages/icons/src/icon-upload.tsx +++ b/packages/icons/src/icon-upload.tsx @@ -11,7 +11,7 @@ const IconUpload = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-user.tsx b/packages/icons/src/icon-user.tsx index 6ee133cc..97131aad 100644 --- a/packages/icons/src/icon-user.tsx +++ b/packages/icons/src/icon-user.tsx @@ -11,7 +11,7 @@ const IconUser = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-video-file.tsx b/packages/icons/src/icon-video-file.tsx index 51c062bd..268c1369 100644 --- a/packages/icons/src/icon-video-file.tsx +++ b/packages/icons/src/icon-video-file.tsx @@ -11,7 +11,7 @@ const IconVideoFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-view-file.tsx b/packages/icons/src/icon-view-file.tsx index c9f4c349..62d6ed4a 100644 --- a/packages/icons/src/icon-view-file.tsx +++ b/packages/icons/src/icon-view-file.tsx @@ -11,7 +11,7 @@ const IconViewFile = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-vip.tsx b/packages/icons/src/icon-vip.tsx index 2002e164..54b8db45 100644 --- a/packages/icons/src/icon-vip.tsx +++ b/packages/icons/src/icon-vip.tsx @@ -11,7 +11,7 @@ const IconVip = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-voice-person.tsx b/packages/icons/src/icon-voice-person.tsx index 762e312d..1b8f9afe 100644 --- a/packages/icons/src/icon-voice-person.tsx +++ b/packages/icons/src/icon-voice-person.tsx @@ -11,7 +11,7 @@ const IconVoicePerson = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-wallet.tsx b/packages/icons/src/icon-wallet.tsx index 4f196aac..9484a485 100644 --- a/packages/icons/src/icon-wallet.tsx +++ b/packages/icons/src/icon-wallet.tsx @@ -11,7 +11,7 @@ const IconWallet = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-warn-fill.tsx b/packages/icons/src/icon-warn-fill.tsx index 9ce9e12d..04bb86b7 100644 --- a/packages/icons/src/icon-warn-fill.tsx +++ b/packages/icons/src/icon-warn-fill.tsx @@ -11,7 +11,7 @@ const IconWarnFill = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-warning.tsx b/packages/icons/src/icon-warning.tsx index b24493a3..7d7221b1 100644 --- a/packages/icons/src/icon-warning.tsx +++ b/packages/icons/src/icon-warning.tsx @@ -11,7 +11,7 @@ const IconWarning = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-wechat.tsx b/packages/icons/src/icon-wechat.tsx index d8a4c1b7..2e4623e3 100644 --- a/packages/icons/src/icon-wechat.tsx +++ b/packages/icons/src/icon-wechat.tsx @@ -11,7 +11,7 @@ const IconWechat = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-weibo.tsx b/packages/icons/src/icon-weibo.tsx index 5e055bc5..6a60d61c 100644 --- a/packages/icons/src/icon-weibo.tsx +++ b/packages/icons/src/icon-weibo.tsx @@ -11,7 +11,7 @@ const IconWeibo = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-wifi.tsx b/packages/icons/src/icon-wifi.tsx index 4fccf1dd..e8d50148 100644 --- a/packages/icons/src/icon-wifi.tsx +++ b/packages/icons/src/icon-wifi.tsx @@ -11,7 +11,7 @@ const IconWifi = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-word.tsx b/packages/icons/src/icon-word.tsx index b915708a..9225fb73 100644 --- a/packages/icons/src/icon-word.tsx +++ b/packages/icons/src/icon-word.tsx @@ -11,7 +11,7 @@ const IconWord = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-work.tsx b/packages/icons/src/icon-work.tsx index d0e00f08..6dc45adb 100644 --- a/packages/icons/src/icon-work.tsx +++ b/packages/icons/src/icon-work.tsx @@ -11,7 +11,7 @@ const IconWork = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-xls.tsx b/packages/icons/src/icon-xls.tsx index 282cc74c..d4e44aba 100644 --- a/packages/icons/src/icon-xls.tsx +++ b/packages/icons/src/icon-xls.tsx @@ -11,7 +11,7 @@ const IconXls = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-youtube.tsx b/packages/icons/src/icon-youtube.tsx index edc45113..65bc0410 100644 --- a/packages/icons/src/icon-youtube.tsx +++ b/packages/icons/src/icon-youtube.tsx @@ -11,7 +11,7 @@ const IconYoutube = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-zoomin.tsx b/packages/icons/src/icon-zoomin.tsx index 3016146d..69311754 100644 --- a/packages/icons/src/icon-zoomin.tsx +++ b/packages/icons/src/icon-zoomin.tsx @@ -11,7 +11,7 @@ const IconZoomin = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > diff --git a/packages/icons/src/icon-zoomout.tsx b/packages/icons/src/icon-zoomout.tsx index f2be6b93..6156df7c 100644 --- a/packages/icons/src/icon-zoomout.tsx +++ b/packages/icons/src/icon-zoomout.tsx @@ -11,7 +11,7 @@ const IconZoomout = forwardRef((props, ref) => { height={size} fill={color} className={className} - style={style} + style={{ verticalAlign: "middle", ...style }} {...rest} > From db51924255d0ceebe4e74c6944a9983bc90ab855 Mon Sep 17 00:00:00 2001 From: wangdi Date: Fri, 13 Mar 2026 13:37:57 +1100 Subject: [PATCH 3/5] chore: add changesets for icon and addon fixes --- .changeset/fix-addon-icon-size.md | 5 +++++ .changeset/fix-icon-vertical-align.md | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changeset/fix-addon-icon-size.md create mode 100644 .changeset/fix-icon-vertical-align.md diff --git a/.changeset/fix-addon-icon-size.md b/.changeset/fix-addon-icon-size.md new file mode 100644 index 00000000..a575cd82 --- /dev/null +++ b/.changeset/fix-addon-icon-size.md @@ -0,0 +1,5 @@ +--- +"@tiny-design/react": patch +--- + +Fixed Input.Addon passing `size` prop to non-input children (e.g. icons), which caused icons to render oversized. diff --git a/.changeset/fix-icon-vertical-align.md b/.changeset/fix-icon-vertical-align.md new file mode 100644 index 00000000..800dcc8f --- /dev/null +++ b/.changeset/fix-icon-vertical-align.md @@ -0,0 +1,5 @@ +--- +"@tiny-design/icons": patch +--- + +Added `vertical-align: middle` as default style on all icon SVGs for proper inline text alignment. From d653bc275f780864b6f26636e8be310e96f62521 Mon Sep 17 00:00:00 2001 From: wangdi Date: Fri, 13 Mar 2026 13:40:41 +1100 Subject: [PATCH 4/5] test(icons): update snapshots for vertical-align middle --- .../icons/src/__tests__/__snapshots__/icons.test.tsx.snap | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/icons/src/__tests__/__snapshots__/icons.test.tsx.snap b/packages/icons/src/__tests__/__snapshots__/icons.test.tsx.snap index b66cbf11..e75628e0 100644 --- a/packages/icons/src/__tests__/__snapshots__/icons.test.tsx.snap +++ b/packages/icons/src/__tests__/__snapshots__/icons.test.tsx.snap @@ -4,6 +4,7 @@ exports[`Icon components IconClose matches snapshot 1`] = ` @@ -21,6 +22,7 @@ exports[`Icon components IconHeart matches snapshot 1`] = ` @@ -38,6 +40,7 @@ exports[`Icon components IconPlus matches snapshot 1`] = ` @@ -55,6 +58,7 @@ exports[`Icon components IconSearch matches snapshot 1`] = ` @@ -72,6 +76,7 @@ exports[`Icon components IconStar matches snapshot 1`] = ` From cb7569cbe34ee5bf4d388ab9bc577a6c1953a5cd Mon Sep 17 00:00:00 2001 From: wangdi Date: Fri, 13 Mar 2026 13:45:37 +1100 Subject: [PATCH 5/5] test(rate): update snapshot for icon vertical-align middle --- .../rate/__tests__/__snapshots__/rate.test.tsx.snap | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/react/src/rate/__tests__/__snapshots__/rate.test.tsx.snap b/packages/react/src/rate/__tests__/__snapshots__/rate.test.tsx.snap index 1018ac05..4d558940 100644 --- a/packages/react/src/rate/__tests__/__snapshots__/rate.test.tsx.snap +++ b/packages/react/src/rate/__tests__/__snapshots__/rate.test.tsx.snap @@ -18,6 +18,7 @@ exports[` should match the snapshot 1`] = ` @@ -37,6 +38,7 @@ exports[` should match the snapshot 1`] = ` @@ -60,6 +62,7 @@ exports[` should match the snapshot 1`] = ` @@ -79,6 +82,7 @@ exports[` should match the snapshot 1`] = ` @@ -102,6 +106,7 @@ exports[` should match the snapshot 1`] = ` @@ -121,6 +126,7 @@ exports[` should match the snapshot 1`] = ` @@ -144,6 +150,7 @@ exports[` should match the snapshot 1`] = ` @@ -163,6 +170,7 @@ exports[` should match the snapshot 1`] = ` @@ -186,6 +194,7 @@ exports[` should match the snapshot 1`] = ` @@ -205,6 +214,7 @@ exports[` should match the snapshot 1`] = `