Files
lucide/packages/react/src/icons/battery-full.js
2020-06-28 15:27:24 +01:00

39 lines
1.0 KiB
JavaScript

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;