fui-fancyui
Version:
FancyUI Libary
15 lines (14 loc) • 573 B
TypeScript
import { TFancyImageWrapper } from '../../atoms/FancyImageWrapper';
import { TThemeArrayOrValueCSS } from '../../../design/designFunctions/arrayToCssValues';
import { TTypography } from '../../atoms/Typography';
import { CSSProp } from 'styled-components';
export type TFancyItemCard = {
image?: TFancyImageWrapper;
title?: TTypography;
subtitle?: TTypography;
description?: TTypography;
externalStyle?: CSSProp;
contentGap?: string;
align?: 'flex-start' | 'flex-end' | 'center' | 'stretch' | 'baseline';
padding?: TThemeArrayOrValueCSS;
};