class101-ui
Version:
A React-based UI Component Library, powered by Class101.
16 lines (15 loc) • 466 B
TypeScript
import React from 'react';
interface Props {
title?: string;
titleStyle?: any;
subTitle?: string;
buttonTitle?: string;
buttonStyle?: any;
to?: string;
href?: string;
target?: string;
onClick?: () => void;
children: React.ReactNode;
}
declare const _default: ({ title, titleStyle, subTitle, buttonTitle, buttonStyle, to, href, target, onClick, children, ...restProps }: Props) => null;
export default _default;