Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions static/app/icons/iconAdd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,3 @@ export function IconAdd({isCircled = false, ...props}: IconAddProps) {
</SvgIcon>
);
}

IconAdd.displayName = 'IconAdd';
6 changes: 1 addition & 5 deletions static/app/icons/iconAllProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconAllProjects(props: SVGIconProps) {
export function IconAllProjects(props: SVGIconProps) {
const theme = useTheme();
return theme.isChonk ? (
<SvgIcon {...props} kind="stroke">
Expand Down Expand Up @@ -51,7 +51,3 @@ function IconAllProjects(props: SVGIconProps) {
</svg>
);
}

IconAllProjects.displayName = 'IconAllProjects';

export {IconAllProjects};
6 changes: 1 addition & 5 deletions static/app/icons/iconAngry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconAngry(props: SVGIconProps) {
export function IconAngry(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand Down Expand Up @@ -37,7 +37,3 @@ function IconAngry(props: SVGIconProps) {
</SvgIcon>
);
}

IconAngry.displayName = 'IconAngry';

export {IconAngry};
6 changes: 1 addition & 5 deletions static/app/icons/iconArchive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconArchive(props: SVGIconProps) {
export function IconArchive(props: SVGIconProps) {
const theme = useTheme();

return (
Expand All @@ -25,7 +25,3 @@ function IconArchive(props: SVGIconProps) {
</SvgIcon>
);
}

IconArchive.displayName = 'IconArchive';

export {IconArchive};
6 changes: 1 addition & 5 deletions static/app/icons/iconArrow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface ArrowProps extends SVGIconProps {
direction?: 'up' | 'right' | 'down' | 'left';
}

function IconArrow({direction = 'up', ...props}: ArrowProps) {
export function IconArrow({direction = 'up', ...props}: ArrowProps) {
const theme = useTheme();

return (
Expand Down Expand Up @@ -43,7 +43,3 @@ function IconArrow({direction = 'up', ...props}: ArrowProps) {
</SvgIcon>
);
}

IconArrow.displayName = 'IconArrow';

export {IconArrow};
6 changes: 1 addition & 5 deletions static/app/icons/iconAsana.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconAsana(props: SVGIconProps) {
export function IconAsana(props: SVGIconProps) {
return (
<SvgIcon {...props} kind="path">
<path d="M8,.61A3.48,3.48,0,1,1,4.52,4.09,3.48,3.48,0,0,1,8,.61Z" />
Expand All @@ -10,7 +10,3 @@ function IconAsana(props: SVGIconProps) {
</SvgIcon>
);
}

IconAsana.displayName = 'IconAsana';

export {IconAsana};
6 changes: 1 addition & 5 deletions static/app/icons/iconAttachment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconAttachment(props: SVGIconProps) {
export function IconAttachment(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -15,7 +15,3 @@ function IconAttachment(props: SVGIconProps) {
</SvgIcon>
);
}

IconAttachment.displayName = 'IconAttachment';

export {IconAttachment};
6 changes: 1 addition & 5 deletions static/app/icons/iconBitbucket.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconBitbucket(props: SVGIconProps) {
export function IconBitbucket(props: SVGIconProps) {
return (
<SvgIcon {...props} kind="path">
<path d="M15.56.82H.52A.51.51,0,0,0,0,1.32.19.19,0,0,0,0,1.4L2.18,14.61a.7.7,0,0,0,.68.58H13.3a.52.52,0,0,0,.51-.43L16,1.41A.5.5,0,0,0,15.56.82ZM9.68,10.35H6.35l-.9-4.71h5Z" />
</SvgIcon>
);
}

IconBitbucket.displayName = 'IconBitbucket';

export {IconBitbucket};
6 changes: 1 addition & 5 deletions static/app/icons/iconBookmark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Props extends SVGIconProps {
isSolid?: boolean;
}

function IconBookmark({isSolid = false, ...props}: Props) {
export function IconBookmark({isSolid = false, ...props}: Props) {
const theme = useTheme();

const {color: providedColor = 'currentColor'} = useIconDefaults(props);
Expand All @@ -32,7 +32,3 @@ function IconBookmark({isSolid = false, ...props}: Props) {
</SvgIcon>
);
}

IconBookmark.displayName = 'IconBookmark';

export {IconBookmark};
6 changes: 1 addition & 5 deletions static/app/icons/iconBot.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconBot(props: SVGIconProps) {
export function IconBot(props: SVGIconProps) {
return (
<SvgIcon
{...props}
Expand All @@ -21,7 +21,3 @@ function IconBot(props: SVGIconProps) {
</SvgIcon>
);
}

IconBot.displayName = 'IconBot';

export {IconBot};
6 changes: 1 addition & 5 deletions static/app/icons/iconBroadcast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconBroadcast(props: SVGIconProps) {
export function IconBroadcast(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -27,7 +27,3 @@ function IconBroadcast(props: SVGIconProps) {
</SvgIcon>
);
}

IconBroadcast.displayName = 'IconBroadcast';

export {IconBroadcast};
6 changes: 1 addition & 5 deletions static/app/icons/iconBuilding.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {SvgIcon, type SVGIconProps} from './svgIcon';

function IconBuilding(props: SVGIconProps) {
export function IconBuilding(props: SVGIconProps) {
return (
<SvgIcon {...props} kind={'path'} viewBox="12 10 50 50" strokeWidth={5}>
<path
Expand All @@ -18,7 +18,3 @@ function IconBuilding(props: SVGIconProps) {
</SvgIcon>
);
}

IconBuilding.displayName = 'IconBuilding';

export {IconBuilding};
4 changes: 1 addition & 3 deletions static/app/icons/iconBusiness.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface BusinessIconProps extends SVGIconProps {
/**
* @deprecated Use IconLightning instead, this icon will be removed in new UI.
*/
function IconBusiness({
export function IconBusiness({
gradient = false,
withShine = false,
...props
Expand Down Expand Up @@ -89,5 +89,3 @@ const ShineRect = styled('rect')`
transform: translateX(-100%);
animation: ${shine} 8s ease-in-out infinite;
`;

export {IconBusiness};
6 changes: 1 addition & 5 deletions static/app/icons/iconCalendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconCalendar(props: SVGIconProps) {
export function IconCalendar(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -26,7 +26,3 @@ function IconCalendar(props: SVGIconProps) {
</SvgIcon>
);
}

IconCalendar.displayName = 'IconCalendar';

export {IconCalendar};
6 changes: 1 addition & 5 deletions static/app/icons/iconChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconChat(props: SVGIconProps) {
export function IconChat(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -15,7 +15,3 @@ function IconChat(props: SVGIconProps) {
</SvgIcon>
);
}

IconChat.displayName = 'IconChat';

export {IconChat};
6 changes: 1 addition & 5 deletions static/app/icons/iconCheckmark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface Props extends SVGIconProps {
isCircled?: boolean;
}

function IconCheckmark({isCircled = false, ...props}: Props) {
export function IconCheckmark({isCircled = false, ...props}: Props) {
const theme = useTheme();
return (
<SvgIcon
Expand All @@ -29,7 +29,3 @@ function IconCheckmark({isCircled = false, ...props}: Props) {
</SvgIcon>
);
}

IconCheckmark.displayName = 'IconCheckmark';

export {IconCheckmark};
6 changes: 1 addition & 5 deletions static/app/icons/iconChevron.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function getChevronPath({
);
}

function IconChevron({isDouble, isCircled, direction = 'up', ...props}: Props) {
export function IconChevron({isDouble, isCircled, direction = 'up', ...props}: Props) {
const theme = useTheme();

return (
Expand All @@ -78,7 +78,3 @@ function IconChevron({isDouble, isCircled, direction = 'up', ...props}: Props) {
</SvgIcon>
);
}

IconChevron.displayName = 'IconChevron';

export {IconChevron};
6 changes: 1 addition & 5 deletions static/app/icons/iconCircle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@ import {SvgIcon} from './svgIcon';
/**
* @deprecated This icon will be removed in new UI.
*/
function IconCircle(props: SVGIconProps) {
export function IconCircle(props: SVGIconProps) {
return (
<SvgIcon {...props} kind="path">
<path d="M8,16a8,8,0,1,1,8-8A8,8,0,0,1,8,16ZM8,1.53A6.47,6.47,0,1,0,14.47,8,6.47,6.47,0,0,0,8,1.53Z" />
</SvgIcon>
);
}

IconCircle.displayName = 'IconCircle';

export {IconCircle};
6 changes: 1 addition & 5 deletions static/app/icons/iconCircleFill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@ import {SvgIcon} from './svgIcon';
/**
* @deprecated This icon will be removed in new UI.
*/
function IconCircleFill(props: SVGIconProps) {
export function IconCircleFill(props: SVGIconProps) {
return (
<SvgIcon {...props} viewBox="0 0 24 24" kind="path">
<circle cx="12" cy="12" r="10" />
</SvgIcon>
);
}

IconCircleFill.displayName = 'IconCircleFill';

export {IconCircleFill};
6 changes: 1 addition & 5 deletions static/app/icons/iconClock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconClock(props: SVGIconProps) {
export function IconClock(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -22,7 +22,3 @@ function IconClock(props: SVGIconProps) {
</SvgIcon>
);
}

IconClock.displayName = 'IconClock';

export {IconClock};
6 changes: 1 addition & 5 deletions static/app/icons/iconClose.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface Props extends SVGIconProps {
isCircled?: boolean;
}

function IconClose({
export function IconClose({
['data-test-id']: dataTestId = 'icon-close',
isCircled = false,
...props
Expand Down Expand Up @@ -43,7 +43,3 @@ function IconClose({
</SvgIcon>
);
}

IconClose.displayName = 'IconClose';

export {IconClose};
6 changes: 1 addition & 5 deletions static/app/icons/iconCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconCode(props: SVGIconProps) {
export function IconCode(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -23,7 +23,3 @@ function IconCode(props: SVGIconProps) {
</SvgIcon>
);
}

IconCode.displayName = 'IconCode';

export {IconCode};
6 changes: 1 addition & 5 deletions static/app/icons/iconCodecov.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconCodecov(props: SVGIconProps) {
export function IconCodecov(props: SVGIconProps) {
return (
<SvgIcon {...props} viewBox="0 0 24 24" kind="path">
<path d="M12.006.481C5.391.486.005 5.831 0 12.399v.03l2.042 1.19.028-.018a5.82 5.82 0 0 1 3.308-1.02c.37 0 .733.034 1.085.1l-.036-.006a5.69 5.69 0 0 1 2.874 1.43l-.004-.002.35.326.198-.434c.192-.42.414-.814.66-1.173.1-.144.208-.29.332-.446l.205-.257-.252-.211a8.33 8.33 0 0 0-3.836-1.807l-.052-.008a8.565 8.565 0 0 0-4.08.251l.06-.016c.972-4.256 4.714-7.223 9.133-7.226a9.31 9.31 0 0 1 6.6 2.713 9.196 9.196 0 0 1 2.508 4.498 8.385 8.385 0 0 0-2.498-.379h-.154c-.356.006-.7.033-1.036.078l.045-.005-.042.006a8.103 8.103 0 0 0-.39.06c-.057.01-.114.022-.17.033a8.102 8.102 0 0 0-.392.09l-.138.034a9.21 9.21 0 0 0-.483.144l-.03.01c-.354.12-.708.268-1.05.44l-.027.013a8.41 8.41 0 0 0-.47.256l-.035.022a8.216 8.216 0 0 0-2.108 1.8l-.011.014-.075.092a8.345 8.345 0 0 0-.378.503c-.088.13-.177.269-.288.452l-.06.104a8.985 8.985 0 0 0-.234.432l-.016.029c-.17.34-.317.698-.44 1.063l-.017.053a8.052 8.052 0 0 0-.41 2.716v-.007.112a12 12 0 0 0 .023.431l-.002-.037a11.676 11.676 0 0 0 .042.412l.005.042.013.103c.018.127.038.252.062.378.241 1.266.845 2.532 1.745 3.66l.041.051.042-.05c.359-.424 1.249-1.77 1.325-2.577v-.015l-.006-.013a5.56 5.56 0 0 1-.64-2.595c0-3.016 2.37-5.521 5.396-5.702l.2-.007a5.93 5.93 0 0 1 3.47 1.025l.027.019L24 12.416v-.03a11.77 11.77 0 0 0-3.51-8.423A11.962 11.962 0 0 0 12.007.48z" />
</SvgIcon>
);
}

IconCodecov.displayName = 'IconCodecov';

export {IconCodecov};
6 changes: 1 addition & 5 deletions static/app/icons/iconCommit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {useTheme} from '@emotion/react';
import type {SVGIconProps} from './svgIcon';
import {SvgIcon} from './svgIcon';

function IconCommit(props: SVGIconProps) {
export function IconCommit(props: SVGIconProps) {
const theme = useTheme();
return (
<SvgIcon {...props} kind={theme.isChonk ? 'stroke' : 'path'}>
Expand All @@ -24,7 +24,3 @@ function IconCommit(props: SVGIconProps) {
</SvgIcon>
);
}

IconCommit.displayName = 'IconCommit';

export {IconCommit};
Loading
Loading