mirror of
https://github.com/apache/superset.git
synced 2026-05-12 03:15:55 +00:00
refactor(Icons): Replaces custom icons with Ant Design 5 icons (#32112)
Replace custom icons with Ant Design 5 icons to standardize the icon
This commit is contained in:
@@ -635,10 +635,13 @@ function ExploreViewContainer(props) {
|
||||
className="action-button"
|
||||
onClick={toggleCollapse}
|
||||
>
|
||||
<Icons.Expand
|
||||
<Icons.VerticalAlignTopOutlined
|
||||
iconSize="xl"
|
||||
css={css`
|
||||
transform: rotate(-90deg);
|
||||
`}
|
||||
className="collapse-icon"
|
||||
iconColor={theme.colors.primary.base}
|
||||
iconSize="l"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@@ -661,10 +664,13 @@ function ExploreViewContainer(props) {
|
||||
>
|
||||
<span role="button" tabIndex={0} className="action-button">
|
||||
<Tooltip title={t('Open Datasource tab')}>
|
||||
<Icons.Collapse
|
||||
<Icons.VerticalAlignTopOutlined
|
||||
iconSize="xl"
|
||||
css={css`
|
||||
transform: rotate(90deg);
|
||||
`}
|
||||
className="collapse-icon"
|
||||
iconColor={theme.colors.primary.base}
|
||||
iconSize="l"
|
||||
/>
|
||||
</Tooltip>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user