import React from 'react'; import { AnimatedBox, Box } from '../Box'; import type { IOpacity } from './skeleton'; interface IProps extends IOpacity { withFooter?: boolean; } export const BasicItem = ({ opacity, withFooter = false }: IProps) => { return ( <> {withFooter && ( )} ); };