import { Group } from '../../../base/icons/src/vender/other' import Title from './title' import cn from '@/utils/classnames' type Props = { wrapClassName: string loadingFileName: string } export const LoadingPlaceholder = ({ className }: { className?: string }) => (
) const Placeholder = ({ wrapClassName, loadingFileName, }: Props) => { return (
</div> <div className={cn('flex items-center h-4 space-x-0.5')}> <LoadingPlaceholder className="w-[41px]" /> <span className='shrink-0 text-text-quaternary system-xs-regular'> ยท </span> <LoadingPlaceholder className="w-[180px]" /> </div> </div> </div> <LoadingPlaceholder className="mt-3 w-[420px]" /> </div> ) } export default Placeholder