-
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
3e8c93f
commit 013cf0d
Showing
9 changed files
with
155 additions
and
3 deletions.
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
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 AppleBitten | ||
* @description Automatically generated SVG icon component for AppleBitten. | ||
* @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 AppleBittenProps extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const AppleBitten: React.FC<AppleBittenProps> = ({ 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 7S8 5 6 5c-.787 0-1.574.31-2.239.868-.459.385-.3 1.08.225 1.37l4.285 2.36a1 1 0 0 1 .466 1.192l-.105.313a6 6 0 0 0 0 3.794l.105.315a1 1 0 0 1-.464 1.19L4.795 18.33c-.45.25-.643.804-.406 1.262C5.126 21.017 6.009 22 7 22c3 0 2.5-1 5-1s2 1 5 1c.992 0 1.874-.983 2.611-2.408.237-.458.045-1.012-.406-1.262l-3.478-1.927a1 1 0 0 1-.464-1.191l.104-.315a6 6 0 0 0 0-3.794l-.104-.313a1 1 0 0 1 .466-1.192l4.285-2.36c.524-.29.684-.985.225-1.37C19.573 5.309 18.787 5 18 5c-2 0-6 2-6 2m0 0c.044-2.682-.17-3.975-2-5"/></svg> | ||
); | ||
|
||
export default AppleBitten; | ||
|
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 Next | ||
* @description Automatically generated SVG icon component for Next. | ||
* @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 NextProps extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Next: React.FC<NextProps> = ({ 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-linejoin="round" stroke- d="m5.941 5.569 8.75 4.666c1.412.753 1.412 2.777 0 3.53l-8.75 4.666C4.61 19.141 3 18.176 3 16.667V7.333c0-1.51 1.609-2.475 2.941-1.764Z"/><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M21 5v14"/></svg> | ||
); | ||
|
||
export default Next; | ||
|
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 Play | ||
* @description Automatically generated SVG icon component for Play. | ||
* @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 PlayProps extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Play: React.FC<PlayProps> = ({ 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-linejoin="round" stroke- d="m5.932 3.543 12.705 6.687c1.425.75 1.425 2.79 0 3.54L5.931 20.457C4.6 21.158 3 20.192 3 18.687V5.313c0-1.505 1.6-2.471 2.932-1.77Z"/></svg> | ||
); | ||
|
||
export default Play; | ||
|
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 Previous | ||
* @description Automatically generated SVG icon component for Previous. | ||
* @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 PreviousProps extends React.SVGProps<SVGSVGElement> { | ||
size?: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
color1?: string; | ||
color2?: string; | ||
className?: string; | ||
} | ||
|
||
const Previous: React.FC<PreviousProps> = ({ 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-linejoin="round" stroke- d="m18.059 18.431-8.75-4.666c-1.412-.753-1.412-2.777 0-3.53l8.75-4.666C19.39 4.859 21 5.824 21 7.333v9.334c0 1.51-1.609 2.475-2.941 1.764Z"/><path strokeWidth={strokeWidth} stroke={color ? color : "currentColor"} stroke-linecap="round" stroke-linejoin="round" stroke- d="M3 19V5"/></svg> | ||
); | ||
|
||
export default Previous; | ||
|
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