/// import { BoxProperties } from './box.properties'; import './box.styles.scss'; /** * Box component * @description Box component is a container that can be used to group elements inside it * defining direction and spacing between them * @param {BoxProperties} properties * @returns A box component */ export default function BoxComponent(properties: BoxProperties): JSX.Element;