Skip to content

Commit 756f645

Browse files
committed
Maybe like so?
1 parent 8bac22e commit 756f645

284 files changed

Lines changed: 2533 additions & 1413 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
@@ -3,9 +3,9 @@ import Svg, { Path, SvgProps } from "react-native-svg";
33

44
/**
55
* @param {SvgProps} props
6-
* @returns
6+
* @returns React.Element
77
*/
8-
function SvgActivity(props) {
8+
export const Activity = (props) => {
99
return (
1010
<Svg
1111
width={24}
@@ -24,4 +24,4 @@ function SvgActivity(props) {
2424
);
2525
}
2626

27-
export default SvgActivity;
27+
export default Activity;

src/icons/Airplay.js

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

4-
function SvgAirplay(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const Airplay = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -21,4 +25,4 @@ function SvgAirplay(props) {
2125
);
2226
}
2327

24-
export default SvgAirplay;
28+
export default Airplay;

src/icons/AlertCircle.js

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

4-
function SvgAlertCircle(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlertCircle = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -21,4 +25,4 @@ function SvgAlertCircle(props) {
2125
);
2226
}
2327

24-
export default SvgAlertCircle;
28+
export default AlertCircle;

src/icons/AlertOctagon.js

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

4-
function SvgAlertOctagon(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlertOctagon = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -20,4 +24,4 @@ function SvgAlertOctagon(props) {
2024
);
2125
}
2226

23-
export default SvgAlertOctagon;
27+
export default AlertOctagon;

src/icons/AlertTriangle.js

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

4-
function SvgAlertTriangle(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlertTriangle = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -20,4 +24,4 @@ function SvgAlertTriangle(props) {
2024
);
2125
}
2226

23-
export default SvgAlertTriangle;
27+
export default AlertTriangle;

src/icons/AlignCenter.js

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

4-
function SvgAlignCenter(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlignCenter = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -20,4 +24,4 @@ function SvgAlignCenter(props) {
2024
);
2125
}
2226

23-
export default SvgAlignCenter;
27+
export default AlignCenter;

src/icons/AlignJustify.js

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

4-
function SvgAlignJustify(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlignJustify = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -20,4 +24,4 @@ function SvgAlignJustify(props) {
2024
);
2125
}
2226

23-
export default SvgAlignJustify;
27+
export default AlignJustify;

src/icons/AlignLeft.js

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

4-
function SvgAlignLeft(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlignLeft = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -20,4 +24,4 @@ function SvgAlignLeft(props) {
2024
);
2125
}
2226

23-
export default SvgAlignLeft;
27+
export default AlignLeft;

src/icons/AlignRight.js

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

4-
function SvgAlignRight(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const AlignRight = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -20,4 +24,4 @@ function SvgAlignRight(props) {
2024
);
2125
}
2226

23-
export default SvgAlignRight;
27+
export default AlignRight;

src/icons/Anchor.js

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

4-
function SvgAnchor(props) {
4+
/**
5+
* @param {SvgProps} props
6+
* @returns JSX.Element
7+
*/
8+
export const Anchor = (props) => {
59
return (
610
<Svg
711
width={24}
@@ -21,4 +25,4 @@ function SvgAnchor(props) {
2125
);
2226
}
2327

24-
export default SvgAnchor;
28+
export default Anchor;

0 commit comments

Comments
 (0)