Skip to content

Commit 3402b67

Browse files
committed
fix default exports
1 parent c5b07dd commit 3402b67

20,203 files changed

Lines changed: 20203 additions & 20203 deletions

File tree

Some content is hidden

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

generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,6 @@ function mapSVGToTemplate(name, svg) {
115115
${svg}
116116
)
117117
118-
export { ${name} as default }
118+
export default ${name}
119119
`
120120
}

src/Icon10kOutlined.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10kOutlined: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10kOutlined as default }
11+
export default Icon10kOutlined

src/Icon10kOutlinedFilled.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10kOutlinedFilled: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10kOutlinedFilled as default }
11+
export default Icon10kOutlinedFilled

src/Icon10kRounded.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10kRounded: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10kRounded as default }
11+
export default Icon10kRounded

src/Icon10kRoundedFilled.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10kRoundedFilled: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10kRoundedFilled as default }
11+
export default Icon10kRoundedFilled

src/Icon10kSharp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10kSharp: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10kSharp as default }
11+
export default Icon10kSharp

src/Icon10kSharpFilled.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10kSharpFilled: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10kSharpFilled as default }
11+
export default Icon10kSharpFilled

src/Icon10mpOutlined.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10mpOutlined: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10mpOutlined as default }
11+
export default Icon10mpOutlined

src/Icon10mpOutlinedFilled.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10mpOutlinedFilled: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10mpOutlinedFilled as default }
11+
export default Icon10mpOutlinedFilled

src/Icon10mpRounded.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const Icon10mpRounded: React.FC<IconProps> = ({ ...props }) => (
88
</svg>
99
)
1010

11-
export { Icon10mpRounded as default }
11+
export default Icon10mpRounded

0 commit comments

Comments
 (0)