Storage Stats
Storage Stats
Preview
API
Property | Type | Is Required |
---|---|---|
storageStats | StorageStats[] | true |
totalStorage | number | true |
Storage Stats Type
src/components/molecules/stats-card/storage-stats-card.tsx
export type StorageStats = {
type: string;
count: string;
size: string;
};