-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7465389
commit 4104fd0
Showing
30 changed files
with
1,027 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react'; | ||
|
||
/** | ||
* @component | ||
* @name Apple1 | ||
* @description Automatically generated SVG icon component for Apple1. | ||
* @param {object} props - SVG component props, including any valid SVG attribute. | ||
* @param {number} [props.size=24] - Icon size. | ||
* @param {string} [props.color] - Icon color. | ||
* @param {number} [props.strokeWidth=2] - Stroke width. | ||
* @param {string} [props.color1] - First fill color (for icons with two colors). | ||
* @param {string} [props.color2] - Second fill color (for icons with two colors). | ||
* @param {string} [props.className] - Additional CSS class for the icon. | ||
* @author José Campillo | ||
* @website ethereal.dev | ||
* @twitter https://x.com/Chema12071 | ||
* @returns {JSX.Element} JSX element representing the SVG icon. | ||
*/ | ||
|
||
interface Apple1Props extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Apple1: React.FC<Apple1Props> = ({ size = 24, color, strokeWidth = 2, color1, color2, className, ...props }) => ( | ||
<svg className={`${className} text-foreground`} color={color} width={size} height={size} {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none"><g clip-path="url(#a)"><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M12 7S8 5 6 5s-4 2-4 5 2 12 5 12 2.5-1 5-1 2 1 5 1 5-9 5-12-2-5-4-5-6 2-6 2m0 0c.044-2.682-.17-3.975-2-5"/></g><defs><clipPath id="a"><path strokeWidth={strokeWidth} fill={color ? color : "currentColor"} d="M0 0h24v24H0z"/></clipPath></defs></svg> | ||
); | ||
|
||
export default Apple1; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react'; | ||
|
||
/** | ||
* @component | ||
* @name Apple2 | ||
* @description Automatically generated SVG icon component for Apple2. | ||
* @param {object} props - SVG component props, including any valid SVG attribute. | ||
* @param {number} [props.size=24] - Icon size. | ||
* @param {string} [props.color] - Icon color. | ||
* @param {number} [props.strokeWidth=2] - Stroke width. | ||
* @param {string} [props.color1] - First fill color (for icons with two colors). | ||
* @param {string} [props.color2] - Second fill color (for icons with two colors). | ||
* @param {string} [props.className] - Additional CSS class for the icon. | ||
* @author José Campillo | ||
* @website ethereal.dev | ||
* @twitter https://x.com/Chema12071 | ||
* @returns {JSX.Element} JSX element representing the SVG icon. | ||
*/ | ||
|
||
interface Apple2Props extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Apple2: React.FC<Apple2Props> = ({ size = 24, color, strokeWidth = 2, color1, color2, className, ...props }) => ( | ||
<svg className={`${className} text-foreground`} color={color} width={size} height={size} {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none"><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M13 7S9 5 7 5s-4 2-4 5 2 12 5 12 2.5-1 5-1 2 1 5 1c1.285 0 2.386-1.65 3.226-3.774L18 15l2-3-2-2.611L21.389 6c-.695-.641-1.542-1-2.389-1-2 0-6 2-6 2m0 0c.044-2.682-.17-3.975-2-5"/></svg> | ||
); | ||
|
||
export default Apple2; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react'; | ||
|
||
/** | ||
* @component | ||
* @name Home1 | ||
* @description Automatically generated SVG icon component for Home1. | ||
* @param {object} props - SVG component props, including any valid SVG attribute. | ||
* @param {number} [props.size=24] - Icon size. | ||
* @param {string} [props.color] - Icon color. | ||
* @param {number} [props.strokeWidth=2] - Stroke width. | ||
* @param {string} [props.color1] - First fill color (for icons with two colors). | ||
* @param {string} [props.color2] - Second fill color (for icons with two colors). | ||
* @param {string} [props.className] - Additional CSS class for the icon. | ||
* @author José Campillo | ||
* @website ethereal.dev | ||
* @twitter https://x.com/Chema12071 | ||
* @returns {JSX.Element} JSX element representing the SVG icon. | ||
*/ | ||
|
||
interface Home1Props extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Home1: React.FC<Home1Props> = ({ size = 24, color, strokeWidth = 2, color1, color2, className, ...props }) => ( | ||
<svg className={`${className} text-foreground`} color={color} width={size} height={size} {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none"><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M2.916 9.267 10.751 3a2 2 0 0 1 2.498 0l7.835 6.267a2 2 0 0 1 .723 1.89L20.28 20.33A2 2 0 0 1 18.306 22H5.694a2 2 0 0 1-1.973-1.671l-1.528-9.171a2 2 0 0 1 .723-1.891"/></svg> | ||
); | ||
|
||
export default Home1; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react'; | ||
|
||
/** | ||
* @component | ||
* @name Home10 | ||
* @description Automatically generated SVG icon component for Home10. | ||
* @param {object} props - SVG component props, including any valid SVG attribute. | ||
* @param {number} [props.size=24] - Icon size. | ||
* @param {string} [props.color] - Icon color. | ||
* @param {number} [props.strokeWidth=2] - Stroke width. | ||
* @param {string} [props.color1] - First fill color (for icons with two colors). | ||
* @param {string} [props.color2] - Second fill color (for icons with two colors). | ||
* @param {string} [props.className] - Additional CSS class for the icon. | ||
* @author José Campillo | ||
* @website ethereal.dev | ||
* @twitter https://x.com/Chema12071 | ||
* @returns {JSX.Element} JSX element representing the SVG icon. | ||
*/ | ||
|
||
interface Home10Props extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Home10: React.FC<Home10Props> = ({ size = 24, color, strokeWidth = 2, color1, color2, className, ...props }) => ( | ||
<svg className={`${className} text-foreground`} color={color} width={size} height={size} {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none"><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M3 9.2 10.75 3a2 2 0 0 1 2.5 0L21 9.2m-18 0L2 10m1-.8V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9.2m0 0 1 .8m-10 8h.01"/></svg> | ||
); | ||
|
||
export default Home10; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react'; | ||
|
||
/** | ||
* @component | ||
* @name Home2 | ||
* @description Automatically generated SVG icon component for Home2. | ||
* @param {object} props - SVG component props, including any valid SVG attribute. | ||
* @param {number} [props.size=24] - Icon size. | ||
* @param {string} [props.color] - Icon color. | ||
* @param {number} [props.strokeWidth=2] - Stroke width. | ||
* @param {string} [props.color1] - First fill color (for icons with two colors). | ||
* @param {string} [props.color2] - Second fill color (for icons with two colors). | ||
* @param {string} [props.className] - Additional CSS class for the icon. | ||
* @author José Campillo | ||
* @website ethereal.dev | ||
* @twitter https://x.com/Chema12071 | ||
* @returns {JSX.Element} JSX element representing the SVG icon. | ||
*/ | ||
|
||
interface Home2Props extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Home2: React.FC<Home2Props> = ({ size = 24, color, strokeWidth = 2, color1, color2, className, ...props }) => ( | ||
<svg className={`${className} text-foreground`} color={color} width={size} height={size} {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none"><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M12 18v-3m0 7h6.306a2 2 0 0 0 1.973-1.671l1.528-9.171a2 2 0 0 0-.723-1.891L13.249 3a2 2 0 0 0-2.498 0L2.916 9.267a2 2 0 0 0-.723 1.89L3.72 20.33A2 2 0 0 0 5.694 22z"/></svg> | ||
); | ||
|
||
export default Home2; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react'; | ||
|
||
/** | ||
* @component | ||
* @name Home3 | ||
* @description Automatically generated SVG icon component for Home3. | ||
* @param {object} props - SVG component props, including any valid SVG attribute. | ||
* @param {number} [props.size=24] - Icon size. | ||
* @param {string} [props.color] - Icon color. | ||
* @param {number} [props.strokeWidth=2] - Stroke width. | ||
* @param {string} [props.color1] - First fill color (for icons with two colors). | ||
* @param {string} [props.color2] - Second fill color (for icons with two colors). | ||
* @param {string} [props.className] - Additional CSS class for the icon. | ||
* @author José Campillo | ||
* @website ethereal.dev | ||
* @twitter https://x.com/Chema12071 | ||
* @returns {JSX.Element} JSX element representing the SVG icon. | ||
*/ | ||
|
||
interface Home3Props extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Home3: React.FC<Home3Props> = ({ size = 24, color, strokeWidth = 2, color1, color2, className, ...props }) => ( | ||
<svg className={`${className} text-foreground`} color={color} width={size} height={size} {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none"><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M10 18h4m-2 4h6.306a2 2 0 0 0 1.973-1.671l1.528-9.171a2 2 0 0 0-.723-1.891L13.249 3a2 2 0 0 0-2.498 0L2.916 9.267a2 2 0 0 0-.723 1.89L3.72 20.33A2 2 0 0 0 5.694 22z"/></svg> | ||
); | ||
|
||
export default Home3; | ||
|
Oops, something went wrong.