mr-component
Version:
A library for Mr components
25 lines (24 loc) • 666 B
TypeScript
import * as React from 'react';
interface VantCellProps {
title?: string;
value?: string;
label?: string;
icon?: React.ReactNode;
rightIcon?: React.ReactNode;
size?: 'large' | 'normal';
border?: boolean;
center?: boolean;
required?: boolean;
clickable?: boolean;
isLink?: boolean;
url?: string;
to?: string;
replace?: boolean;
onClick?: () => void;
style?: React.CSSProperties;
className?: string;
valueClass?: string;
children?: React.ReactNode;
}
declare const RefVantCell: React.ForwardRefExoticComponent<VantCellProps & React.RefAttributes<HTMLDivElement>>;
export default RefVantCell;