feat: Add react package (#4)
* chore: Organise * feat: Add `react` package * refactor: Remove unneeded char
This commit is contained in:
39
packages/react/src/icons/cloud-drizzle.js
Normal file
39
packages/react/src/icons/cloud-drizzle.js
Normal file
@@ -0,0 +1,39 @@
|
||||
import React, { forwardRef } from "react";
|
||||
import PropTypes from "prop-types";
|
||||
|
||||
const CloudDrizzle = forwardRef(
|
||||
({ color = "currentColor", size = 24, ...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="2"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
{...rest}
|
||||
>
|
||||
<line x1="8" y1="19" x2="8" y2="21"></line>
|
||||
<line x1="8" y1="13" x2="8" y2="15"></line>
|
||||
<line x1="16" y1="19" x2="16" y2="21"></line>
|
||||
<line x1="16" y1="13" x2="16" y2="15"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="12" y1="15" x2="12" y2="17"></line>
|
||||
<path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
CloudDrizzle.propTypes = {
|
||||
color: PropTypes.string,
|
||||
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
||||
};
|
||||
|
||||
CloudDrizzle.displayName = "CloudDrizzle";
|
||||
|
||||
export default CloudDrizzle;
|
||||
Reference in New Issue
Block a user