Skip to content

Commit 41504c9

Browse files
returns update
1 parent fefc9d0 commit 41504c9

282 files changed

Lines changed: 846 additions & 846 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.

src/icons/Activity.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns React.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const Activity = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const Activity = (props) => {
2222
<Path d="M22 12h-4l-3 9L9 3l-3 9H2" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default Activity;

src/icons/Airplay.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const Airplay = (props) => {
99
return (
@@ -23,6 +23,6 @@ export const Airplay = (props) => {
2323
<Path d="M12 15l5 6H7l5-6z" />
2424
</Svg>
2525
);
26-
}
26+
};
2727

2828
export default Airplay;

src/icons/AlertCircle.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Circle, Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlertCircle = (props) => {
99
return (
@@ -23,6 +23,6 @@ export const AlertCircle = (props) => {
2323
<Path d="M12 8v4M12 16h.01" />
2424
</Svg>
2525
);
26-
}
26+
};
2727

2828
export default AlertCircle;

src/icons/AlertOctagon.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlertOctagon = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const AlertOctagon = (props) => {
2222
<Path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2zM12 8v4M12 16h.01" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default AlertOctagon;

src/icons/AlertTriangle.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlertTriangle = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const AlertTriangle = (props) => {
2222
<Path d="M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0zM12 9v4M12 17h.01" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default AlertTriangle;

src/icons/AlignCenter.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlignCenter = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const AlignCenter = (props) => {
2222
<Path d="M18 10H6M21 6H3M21 14H3M18 18H6" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default AlignCenter;

src/icons/AlignJustify.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlignJustify = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const AlignJustify = (props) => {
2222
<Path d="M21 10H3M21 6H3M21 14H3M21 18H3" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default AlignJustify;

src/icons/AlignLeft.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlignLeft = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const AlignLeft = (props) => {
2222
<Path d="M17 10H3M21 6H3M21 14H3M17 18H3" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default AlignLeft;

src/icons/AlignRight.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const AlignRight = (props) => {
99
return (
@@ -22,6 +22,6 @@ export const AlignRight = (props) => {
2222
<Path d="M21 10H7M21 6H3M21 14H3M21 18H7" />
2323
</Svg>
2424
);
25-
}
25+
};
2626

2727
export default AlignRight;

src/icons/Anchor.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as React from "react";
22
import Svg, { Circle, Path, SvgProps } from "react-native-svg";
33

44
/**
5-
* @param {SvgProps} props
6-
* @returns JSX.Element
5+
* @param {SvgProps} props
6+
* @returns React.ComponentClass<SvgProps>
77
*/
88
export const Anchor = (props) => {
99
return (
@@ -23,6 +23,6 @@ export const Anchor = (props) => {
2323
<Path d="M12 22V8M5 12H2a10 10 0 0020 0h-3" />
2424
</Svg>
2525
);
26-
}
26+
};
2727

2828
export default Anchor;

0 commit comments

Comments
 (0)