UNPKG

class101-ui

Version:

A React-based UI Component Library, powered by Class101.

16 lines (15 loc) 474 B
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) => JSX.Element; export default _default;