import React from 'react' import { ForwardedRef, forwardRef } from 'react' import { ContainerStyle } from './ContainerStyles' import { ContainerProps } from './types' function Container(props: ContainerProps, ref?: ForwardedRef) { const { size = 'full', ...rest } = props return } export default forwardRef(Container)