diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2023-03-23 16:10:33 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-03-27 20:03:03 +0000 |
commit | 07b49a758a16926d455c69ccfa6f5aa7fb2a10db (patch) | |
tree | 691ce315d14e040b95a08f47970d621cf6719d10 /server/sonar-web/design-system/src/components/icons | |
parent | b211e45ffe83cbf8eaa98c3539b2ee3a952162e2 (diff) | |
download | sonarqube-07b49a758a16926d455c69ccfa6f5aa7fb2a10db.tar.gz sonarqube-07b49a758a16926d455c69ccfa6f5aa7fb2a10db.zip |
SONAR-18776 Project settings and info link
Diffstat (limited to 'server/sonar-web/design-system/src/components/icons')
-rw-r--r-- | server/sonar-web/design-system/src/components/icons/ChevronDownIcon.tsx | 2 | ||||
-rw-r--r-- | server/sonar-web/design-system/src/components/icons/index.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/design-system/src/components/icons/ChevronDownIcon.tsx b/server/sonar-web/design-system/src/components/icons/ChevronDownIcon.tsx index 863c092f78e..b34e8800098 100644 --- a/server/sonar-web/design-system/src/components/icons/ChevronDownIcon.tsx +++ b/server/sonar-web/design-system/src/components/icons/ChevronDownIcon.tsx @@ -21,7 +21,7 @@ import { useTheme } from '@emotion/react'; import { themeColor } from '../../helpers/theme'; import { CustomIcon, IconProps } from './Icon'; -export default function ChevronDownIcon({ fill = 'currentColor', ...iconProps }: IconProps) { +export function ChevronDownIcon({ fill = 'currentColor', ...iconProps }: IconProps) { const theme = useTheme(); return ( <CustomIcon {...iconProps}> diff --git a/server/sonar-web/design-system/src/components/icons/index.ts b/server/sonar-web/design-system/src/components/icons/index.ts index b0992dbdb91..303600bd9be 100644 --- a/server/sonar-web/design-system/src/components/icons/index.ts +++ b/server/sonar-web/design-system/src/components/icons/index.ts @@ -18,7 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ export { default as BranchIcon } from './BranchIcon'; -export { default as ChevronDownIcon } from './ChevronDownIcon'; +export { ChevronDownIcon } from './ChevronDownIcon'; export { default as ClockIcon } from './ClockIcon'; export { FlagErrorIcon } from './FlagErrorIcon'; export { FlagInfoIcon } from './FlagInfoIcon'; |