feat(react): Ability to customise strokeWidth (#38)

This commit is contained in:
John Letey
2020-06-28 15:27:24 +01:00
committed by GitHub
parent fc76ff2687
commit 3624f449f0
308 changed files with 1594 additions and 621 deletions
+13 -3
View File
@@ -39,6 +39,7 @@ import { FC, SVGAttributes } from "react";
interface Props extends SVGAttributes<SVGElement> {
color?: string;
size?: string | number;
width?: string | number;
}
type Icon = FC<Props>;
@@ -54,7 +55,12 @@ fs.writeFileSync(
const attrsToString = (attrs) => {
return Object.keys(attrs)
.map((key) => {
if (key === "width" || key === "height" || key === "stroke") {
if (
key === "width" ||
key === "height" ||
key === "stroke" ||
key === "strokeWidth"
) {
return key + "={" + attrs[key] + "}";
}
if (key === "rest") {
@@ -75,7 +81,7 @@ icons.forEach((i) => {
viewBox: "0 0 24 24",
fill: "none",
stroke: "color",
strokeWidth: 2,
strokeWidth: "width",
strokeLinecap: "round",
strokeLinejoin: "round",
rest: "...rest",
@@ -85,7 +91,7 @@ icons.forEach((i) => {
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ${ComponentName} = forwardRef(({ color = "currentColor", size = 24, ...rest }, ref) => {
const ${ComponentName} = forwardRef(({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg ref={ref} ${attrsToString(defaultAttrs)}>
${i.content}
@@ -99,6 +105,10 @@ icons.forEach((i) => {
PropTypes.string,
PropTypes.number
]),
width: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
]),
}
${ComponentName}.displayName = "${ComponentName}"
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Activity = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Activity = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Activity = forwardRef(
Activity.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Activity.displayName = "Activity";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Airplay = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Airplay = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Airplay = forwardRef(
Airplay.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Airplay.displayName = "Airplay";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlertCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlertCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const AlertCircle = forwardRef(
AlertCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlertCircle.displayName = "AlertCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlertOctagon = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlertOctagon = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const AlertOctagon = forwardRef(
AlertOctagon.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlertOctagon.displayName = "AlertOctagon";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlertTriangle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlertTriangle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const AlertTriangle = forwardRef(
AlertTriangle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlertTriangle.displayName = "AlertTriangle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlignCenter = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlignCenter = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const AlignCenter = forwardRef(
AlignCenter.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlignCenter.displayName = "AlignCenter";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlignJustify = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlignJustify = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const AlignJustify = forwardRef(
AlignJustify.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlignJustify.displayName = "AlignJustify";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlignLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlignLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const AlignLeft = forwardRef(
AlignLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlignLeft.displayName = "AlignLeft";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AlignRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AlignRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const AlignRight = forwardRef(
AlignRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AlignRight.displayName = "AlignRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Anchor = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Anchor = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Anchor = forwardRef(
Anchor.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Anchor.displayName = "Anchor";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Aperture = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Aperture = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -32,6 +32,7 @@ const Aperture = forwardRef(
Aperture.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Aperture.displayName = "Aperture";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Archive = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Archive = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Archive = forwardRef(
Archive.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Archive.displayName = "Archive";
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowDownCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowDownCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const ArrowDownCircle = forwardRef(
ArrowDownCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowDownCircle.displayName = "ArrowDownCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowDownLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowDownLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowDownLeft = forwardRef(
ArrowDownLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowDownLeft.displayName = "ArrowDownLeft";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowDownRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowDownRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowDownRight = forwardRef(
ArrowDownRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowDownRight.displayName = "ArrowDownRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowDown = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowDown = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowDown = forwardRef(
ArrowDown.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowDown.displayName = "ArrowDown";
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowLeftCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowLeftCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const ArrowLeftCircle = forwardRef(
ArrowLeftCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowLeftCircle.displayName = "ArrowLeftCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowLeft = forwardRef(
ArrowLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowLeft.displayName = "ArrowLeft";
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowRightCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowRightCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const ArrowRightCircle = forwardRef(
ArrowRightCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowRightCircle.displayName = "ArrowRightCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowRight = forwardRef(
ArrowRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowRight.displayName = "ArrowRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowUpCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowUpCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const ArrowUpCircle = forwardRef(
ArrowUpCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowUpCircle.displayName = "ArrowUpCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowUpLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowUpLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowUpLeft = forwardRef(
ArrowUpLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowUpLeft.displayName = "ArrowUpLeft";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowUpRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowUpRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowUpRight = forwardRef(
ArrowUpRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowUpRight.displayName = "ArrowUpRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ArrowUp = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ArrowUp = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ArrowUp = forwardRef(
ArrowUp.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ArrowUp.displayName = "ArrowUp";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const AtSign = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const AtSign = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const AtSign = forwardRef(
AtSign.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
AtSign.displayName = "AtSign";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Award = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Award = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Award = forwardRef(
Award.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Award.displayName = "Award";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BarChart2 = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const BarChart2 = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const BarChart2 = forwardRef(
BarChart2.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BarChart2.displayName = "BarChart2";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BarChart = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const BarChart = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const BarChart = forwardRef(
BarChart.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BarChart.displayName = "BarChart";
+6 -5
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BatteryCharging = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,14 +12,14 @@ const BatteryCharging = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<path d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"></path>
<line x1="23" y1="13" x2="23" y2="11"></line>
<polyline points="11 6 7 12 13 12 9 18"></polyline>
<path d="M7 7H3.77778C2.79594 7 2 7.74619 2 8.66667V15.3333C2 16.2538 2.79594 17 3.77778 17H6M14 7H16.2222C17.2041 7 18 7.74619 18 8.66667V15.3333C18 16.2538 17.2041 17 16.2222 17H13"></path>
<polyline points="11 7 8 12 12 12 9 17"></polyline>
<line x1="22" x2="22" y1="11" y2="13"></line>
</svg>
);
}
@@ -28,6 +28,7 @@ const BatteryCharging = forwardRef(
BatteryCharging.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BatteryCharging.displayName = "BatteryCharging";
+38
View File
@@ -0,0 +1,38 @@
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BatteryFull = forwardRef(
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<rect x="2" y="7" width="16" height="10" rx="2" ry="2"></rect>
<line x1="22" x2="22" y1="11" y2="13"></line>
<line x1="6" x2="6" y1="10" y2="14"></line>
<line x1="10" x2="10" y1="10" y2="14"></line>
<line x1="14" x2="14" y1="10" y2="14"></line>
</svg>
);
}
);
BatteryFull.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BatteryFull.displayName = "BatteryFull";
export default BatteryFull;
+36
View File
@@ -0,0 +1,36 @@
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BatteryLow = forwardRef(
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<rect x="2" y="7" width="16" height="10" rx="2" ry="2"></rect>
<line x1="22" x2="22" y1="11" y2="13"></line>
<line x1="6" x2="6" y1="10" y2="14"></line>
</svg>
);
}
);
BatteryLow.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BatteryLow.displayName = "BatteryLow";
export default BatteryLow;
@@ -0,0 +1,37 @@
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BatteryMedium = forwardRef(
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<rect x="2" y="7" width="16" height="10" rx="2" ry="2"></rect>
<line x1="22" x2="22" y1="11" y2="13"></line>
<line x1="6" x2="6" y1="10" y2="14"></line>
<line x1="10" x2="10" y1="10" y2="14"></line>
</svg>
);
}
);
BatteryMedium.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BatteryMedium.displayName = "BatteryMedium";
export default BatteryMedium;
+5 -4
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Battery = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,13 +12,13 @@ const Battery = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<rect x="1" y="6" width="18" height="12" rx="2" ry="2"></rect>
<line x1="23" y1="13" x2="23" y2="11"></line>
<rect x="2" y="7" width="16" height="10" rx="2" ry="2"></rect>
<line x1="22" x2="22" y1="11" y2="13"></line>
</svg>
);
}
@@ -27,6 +27,7 @@ const Battery = forwardRef(
Battery.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Battery.displayName = "Battery";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BellOff = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const BellOff = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -30,6 +30,7 @@ const BellOff = forwardRef(
BellOff.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BellOff.displayName = "BellOff";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Bell = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Bell = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Bell = forwardRef(
Bell.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Bell.displayName = "Bell";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Bluetooth = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Bluetooth = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Bluetooth = forwardRef(
Bluetooth.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Bluetooth.displayName = "Bluetooth";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Bold = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Bold = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Bold = forwardRef(
Bold.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Bold.displayName = "Bold";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const BookOpen = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const BookOpen = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const BookOpen = forwardRef(
BookOpen.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
BookOpen.displayName = "BookOpen";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Book = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Book = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Book = forwardRef(
Book.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Book.displayName = "Book";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Bookmark = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Bookmark = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Bookmark = forwardRef(
Bookmark.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Bookmark.displayName = "Bookmark";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Box = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Box = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Box = forwardRef(
Box.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Box.displayName = "Box";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Briefcase = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Briefcase = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Briefcase = forwardRef(
Briefcase.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Briefcase.displayName = "Briefcase";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Calendar = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Calendar = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const Calendar = forwardRef(
Calendar.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Calendar.displayName = "Calendar";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CameraOff = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CameraOff = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CameraOff = forwardRef(
CameraOff.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CameraOff.displayName = "CameraOff";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Camera = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Camera = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Camera = forwardRef(
Camera.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Camera.displayName = "Camera";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Cast = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Cast = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Cast = forwardRef(
Cast.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Cast.displayName = "Cast";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CheckCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CheckCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CheckCircle = forwardRef(
CheckCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CheckCircle.displayName = "CheckCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CheckSquare = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CheckSquare = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CheckSquare = forwardRef(
CheckSquare.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CheckSquare.displayName = "CheckSquare";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Check = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Check = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Check = forwardRef(
Check.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Check.displayName = "Check";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronDown = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronDown = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const ChevronDown = forwardRef(
ChevronDown.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronDown.displayName = "ChevronDown";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const ChevronLeft = forwardRef(
ChevronLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronLeft.displayName = "ChevronLeft";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const ChevronRight = forwardRef(
ChevronRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronRight.displayName = "ChevronRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronUp = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronUp = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const ChevronUp = forwardRef(
ChevronUp.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronUp.displayName = "ChevronUp";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronsDown = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronsDown = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ChevronsDown = forwardRef(
ChevronsDown.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronsDown.displayName = "ChevronsDown";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronsLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronsLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ChevronsLeft = forwardRef(
ChevronsLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronsLeft.displayName = "ChevronsLeft";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronsRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronsRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ChevronsRight = forwardRef(
ChevronsRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronsRight.displayName = "ChevronsRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronsUp = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const ChevronsUp = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const ChevronsUp = forwardRef(
ChevronsUp.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronsUp.displayName = "ChevronsUp";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Chrome = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Chrome = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -30,6 +30,7 @@ const Chrome = forwardRef(
Chrome.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Chrome.displayName = "Chrome";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Circle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Circle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Circle = forwardRef(
Circle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Circle.displayName = "Circle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Clipboard = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Clipboard = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Clipboard = forwardRef(
Clipboard.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Clipboard.displayName = "Clipboard";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Clock = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Clock = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Clock = forwardRef(
Clock.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Clock.displayName = "Clock";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CloudDrizzle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CloudDrizzle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -32,6 +32,7 @@ const CloudDrizzle = forwardRef(
CloudDrizzle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CloudDrizzle.displayName = "CloudDrizzle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CloudLightning = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CloudLightning = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CloudLightning = forwardRef(
CloudLightning.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CloudLightning.displayName = "CloudLightning";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CloudOff = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CloudOff = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CloudOff = forwardRef(
CloudOff.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CloudOff.displayName = "CloudOff";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CloudRain = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CloudRain = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const CloudRain = forwardRef(
CloudRain.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CloudRain.displayName = "CloudRain";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CloudSnow = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CloudSnow = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -32,6 +32,7 @@ const CloudSnow = forwardRef(
CloudSnow.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CloudSnow.displayName = "CloudSnow";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Cloud = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Cloud = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Cloud = forwardRef(
Cloud.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Cloud.displayName = "Cloud";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Code = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Code = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Code = forwardRef(
Code.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Code.displayName = "Code";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Codepen = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Codepen = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -30,6 +30,7 @@ const Codepen = forwardRef(
Codepen.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Codepen.displayName = "Codepen";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Codesandbox = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Codesandbox = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -31,6 +31,7 @@ const Codesandbox = forwardRef(
Codesandbox.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Codesandbox.displayName = "Codesandbox";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Coffee = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Coffee = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -30,6 +30,7 @@ const Coffee = forwardRef(
Coffee.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Coffee.displayName = "Coffee";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Columns = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Columns = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Columns = forwardRef(
Columns.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Columns.displayName = "Columns";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Command = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Command = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -26,6 +26,7 @@ const Command = forwardRef(
Command.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Command.displayName = "Command";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Compass = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Compass = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Compass = forwardRef(
Compass.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Compass.displayName = "Compass";
+38
View File
@@ -0,0 +1,38 @@
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Contact = forwardRef(
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<path d="M19 22H5c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2z"></path>
<line x1="16" y1="2" x2="16" y2="4"></line>
<line x1="8" y1="2" x2="8" y2="4"></line>
<circle cx="12" cy="11" r="3"></circle>
<path d="M17 18.5c-1.4-1-3.1-1.5-5-1.5s-3.6.6-5 1.5"></path>
</svg>
);
}
);
Contact.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Contact.displayName = "Contact";
export default Contact;
+35
View File
@@ -0,0 +1,35 @@
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Contrast = forwardRef(
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<circle cx="12" cy="12" r="10"></circle>
<path d="M12 18a6 6 0 000-12v12z"></path>
</svg>
);
}
);
Contrast.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Contrast.displayName = "Contrast";
export default Contrast;
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Copy = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Copy = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Copy = forwardRef(
Copy.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Copy.displayName = "Copy";
+35
View File
@@ -0,0 +1,35 @@
import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Copyright = forwardRef(
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<circle cx="12" cy="12" r="10"></circle>
<path d="M15 9.35418C14.2671 8.52376 13.1947 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16C13.1947 16 14.2671 15.4762 15 14.6458"></path>
</svg>
);
}
);
Copyright.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Copyright.displayName = "Copyright";
export default Copyright;
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerDownLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerDownLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerDownLeft = forwardRef(
CornerDownLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerDownLeft.displayName = "CornerDownLeft";
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerDownRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerDownRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerDownRight = forwardRef(
CornerDownRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerDownRight.displayName = "CornerDownRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerLeftDown = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerLeftDown = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerLeftDown = forwardRef(
CornerLeftDown.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerLeftDown.displayName = "CornerLeftDown";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerLeftUp = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerLeftUp = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerLeftUp = forwardRef(
CornerLeftUp.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerLeftUp.displayName = "CornerLeftUp";
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerRightDown = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerRightDown = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerRightDown = forwardRef(
CornerRightDown.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerRightDown.displayName = "CornerRightDown";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerRightUp = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerRightUp = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerRightUp = forwardRef(
CornerRightUp.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerRightUp.displayName = "CornerRightUp";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerUpLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerUpLeft = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerUpLeft = forwardRef(
CornerUpLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerUpLeft.displayName = "CornerUpLeft";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CornerUpRight = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CornerUpRight = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CornerUpRight = forwardRef(
CornerUpRight.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CornerUpRight.displayName = "CornerUpRight";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Cpu = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Cpu = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -35,6 +35,7 @@ const Cpu = forwardRef(
Cpu.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Cpu.displayName = "Cpu";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const CreditCard = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const CreditCard = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const CreditCard = forwardRef(
CreditCard.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
CreditCard.displayName = "CreditCard";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Crop = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Crop = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Crop = forwardRef(
Crop.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Crop.displayName = "Crop";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Crosshair = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Crosshair = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -30,6 +30,7 @@ const Crosshair = forwardRef(
Crosshair.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Crosshair.displayName = "Crosshair";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Database = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Database = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Database = forwardRef(
Database.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Database.displayName = "Database";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Delete = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Delete = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Delete = forwardRef(
Delete.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Delete.displayName = "Delete";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Disc = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Disc = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const Disc = forwardRef(
Disc.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Disc.displayName = "Disc";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const DivideCircle = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const DivideCircle = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const DivideCircle = forwardRef(
DivideCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
DivideCircle.displayName = "DivideCircle";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const DivideSquare = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const DivideSquare = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -29,6 +29,7 @@ const DivideSquare = forwardRef(
DivideSquare.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
DivideSquare.displayName = "DivideSquare";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Divide = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Divide = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Divide = forwardRef(
Divide.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Divide.displayName = "Divide";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const DollarSign = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const DollarSign = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -27,6 +27,7 @@ const DollarSign = forwardRef(
DollarSign.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
DollarSign.displayName = "DollarSign";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const DownloadCloud = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const DownloadCloud = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const DownloadCloud = forwardRef(
DownloadCloud.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
DownloadCloud.displayName = "DownloadCloud";
+3 -2
View File
@@ -2,7 +2,7 @@ import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const Download = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => {
return (
<svg
ref={ref}
@@ -12,7 +12,7 @@ const Download = forwardRef(
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeWidth={width}
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
@@ -28,6 +28,7 @@ const Download = forwardRef(
Download.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Download.displayName = "Download";

Some files were not shown because too many files have changed in this diff Show More