Skip to content

Commit 0602833

Browse files
style(js): Export SvgIcon without default (#36097)
1 parent 5d98605 commit 0602833

File tree

110 files changed

+110
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+110
-112
lines changed

static/app/icons/iconAdd.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef, Fragment} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
interface Props extends SVGIconProps {
66
isCircled?: boolean;

static/app/icons/iconAnchor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
const IconAnchor = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
66
return (

static/app/icons/iconArrow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {css} from '@emotion/react';
33

44
import theme from 'sentry/utils/theme';
55

6-
import SvgIcon, {SVGIconProps} from './svgIcon';
6+
import {SvgIcon, SVGIconProps} from './svgIcon';
77

88
interface Props extends SVGIconProps {
99
direction?: 'up' | 'right' | 'down' | 'left';

static/app/icons/iconAsana.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
const IconAsana = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
66
return (

static/app/icons/iconAttachment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
const IconAttachment = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
66
return (

static/app/icons/iconBell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
const IconBell = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
66
return (

static/app/icons/iconBitbucket.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
const IconBitbucket = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
66
return (

static/app/icons/iconBookmark.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
interface Props extends SVGIconProps {
66
isSolid?: boolean;

static/app/icons/iconBroadcast.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {forwardRef} from 'react';
22

3-
import SvgIcon, {SVGIconProps} from './svgIcon';
3+
import {SvgIcon, SVGIconProps} from './svgIcon';
44

55
const IconBroadcast = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
66
return (

static/app/icons/iconBusiness.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styled from '@emotion/styled';
44

55
import {uniqueId} from 'sentry/utils/guid';
66

7-
import SvgIcon, {SVGIconProps} from './svgIcon';
7+
import {SvgIcon, SVGIconProps} from './svgIcon';
88

99
type WrappedProps = {
1010
forwardedRef: React.Ref<SVGSVGElement>;

0 commit comments

Comments
 (0)