UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

14 lines (13 loc) 540 B
/** * @typedef {import('../../types').PresentationalProps} CommonProps * @typedef {import('preact').JSX.HTMLAttributes<HTMLElement>} HTMLAttributes * */ /** * Style a title for a Card * * @param {CommonProps & HTMLAttributes} props */ export default function CardTitle({ children, classes, elementRef, ...htmlAttributes }: CommonProps & HTMLAttributes): import("preact").JSX.Element; export type CommonProps = import('../../types').PresentationalProps; export type HTMLAttributes = import('preact').JSX.HTMLAttributes<HTMLElement>;