lune-ui-lib
Version:
Lune UI Components Library
17 lines (16 loc) • 404 B
TypeScript
import type { SxProps } from '@mui/material';
import React, { FC } from 'react';
declare const CtaTile: FC<{
title: string;
subTitle?: string;
image: string | React.ReactNode;
onClick?: () => void;
disabled?: boolean;
sxProps?: SxProps;
mini?: boolean;
showArrow?: boolean;
href?: string;
icon?: React.ReactNode;
newPage?: boolean;
}>;
export default CtaTile;