import { Skeleton, List } from '@/shared/ui';
import VoucherCardPlaceholder from '../../assets/voucher-card-placeholder.svg?react';
import { Voucher } from '../../types';
import { VoucherCard } from '../voucher-card';
type Props = {
items: Voucher[] | undefined;
isLoading: boolean;
hasMore: boolean;
noItemsSubheading?: string;
size?: 'small';
onVoucherChange: () => void;
fetchMore: () => void;
};
function Vouchers({ onVoucherChange, noItemsSubheading, ...props }: Props) {
const renderVoucher = (voucher: Voucher) => ;
const renderSkeleton = () => ;
return (
);
}
export { Vouchers };