@lx-react-materiel/ms-shop
Version:
## usage
18 lines (17 loc) • 415 B
TypeScript
/// <reference types="react" />
import { type ILxBoxProps } from '@lx-react-materiel/components';
interface IGridBoxProps extends ILxBoxProps {
title: string;
iconSrc: string;
imageProps: {
width: number | string;
height: number | string;
};
}
/**
* 四宫格 组件
* @param props
* @constructor
*/
export declare function GridBox(props: IGridBoxProps): JSX.Element;
export {};