@amaui/ui-react
Version:
UI for React
15 lines (14 loc) • 460 B
TypeScript
import React from 'react';
import { IBaseElement, ITonal, IColor, IVersion, IElevation } from '../types';
export interface ICardImage extends IBaseElement {
tonal?: ITonal;
color?: IColor;
version?: IVersion;
elevation?: IElevation;
alt?: string;
image?: string;
shape?: 'all' | 'none' | 'top' | 'left' | 'bottom' | 'right';
marginHorizontal?: boolean;
}
declare const CardImage: React.FC<ICardImage>;
export default CardImage;