import React from 'react'; import PropTypes from 'prop-types'; export default function IconBorder({ children, size }) { const borderStyle = { height: `${size}px`, width: `${size}px` }; return (