import React from 'react'; // -- TYPES interface IShrinkProps extends React.SVGAttributes {} // -- MAIN function Shrink(props: IShrinkProps) { return ( ); } export default Shrink;