Skip to content

Commit da5a6f9

Browse files
authored
Merge pull request #29 from input-output-hk/fix/warning-icon-triangle-solid-naming
fix(icons): fix warning icon's name
2 parents 979c621 + 2dfca78 commit da5a6f9

3 files changed

+5
-3
lines changed

src/icons/WarningIconTriangleSolid.tsx src/icons/WarningIconTriangleSolidComponent.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import * as React from 'react';
22
import type { SVGProps } from 'react';
3-
const SvgWarningIconTriangleSolid = (props: SVGProps<SVGSVGElement>) => (
3+
const SvgWarningIconTriangleSolidcomponent = (
4+
props: SVGProps<SVGSVGElement>,
5+
) => (
46
<svg
57
xmlns="http://www.w3.org/2000/svg"
68
width={24}
@@ -16,4 +18,4 @@ const SvgWarningIconTriangleSolid = (props: SVGProps<SVGSVGElement>) => (
1618
/>
1719
</svg>
1820
);
19-
export default SvgWarningIconTriangleSolid;
21+
export default SvgWarningIconTriangleSolidcomponent;

src/icons/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ export { default as UserGroupComponent } from './UserGroupComponent';
7171
export { default as VideoGradientComponent } from './VideoGradientComponent';
7272
export { default as WalletComponent } from './WalletComponent';
7373
export { default as WarningIconCircleComponent } from './WarningIconCircleComponent';
74-
export { default as WarningIconTriangleSolid } from './WarningIconTriangleSolid';
74+
export { default as WarningIconTriangleSolidComponent } from './WarningIconTriangleSolidComponent';
7575
export { default as WarningIconTriangleComponent } from './WarningIconTriangleComponent';

0 commit comments

Comments
 (0)