7 lines
284 B
TypeScript
7 lines
284 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
|
|
name: string;
|
|
description: string;
|
|
image: string;
|
|
};
|