@onesy/ui-react
Version:
UI for React
13 lines (12 loc) • 404 B
TypeScript
import React from 'react';
import { IBaseElement, IVersion, IElevation } from '../types';
export declare type ICardImage = IBaseElement & {
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;