woocommerce/plugins/woocommerce-admin/client/customize-store/intro/theme-cards.tsx

10 lines
347 B
TypeScript

export type ThemeCard = {
// placeholder props, possibly take reference from https://github.com/Automattic/wp-calypso/blob/1f1b79210c49ef0d051f8966e24122229a334e29/packages/design-picker/src/components/theme-card/index.tsx#L32
slug: string;
name: string;
description: string;
image: string;
isActive: boolean;
styleVariations: string[];
};