/** Icons generated by create-react-icons. Don't edit this file directly. **/ import * as React from "react"; import PropTypes from "prop-types"; interface IconProps extends React.SVGAttributes { size?: number | string; color?: string; } export const IconTablet02: React.FunctionComponent = ({ color = "currentColor", size = 24, ...other }) => { return ( ); }; IconTablet02.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) };