import React from "react"; import propTypes from "prop-types"; export const KubescapeIcon = function ({ size, fill = null, ...svgProps }) { return ( ); }; KubescapeIcon.propTypes = { size: propTypes.number, fill: propTypes.string, }; KubescapeIcon.defaultProps = { size: 16, };