UNPKG

matrix-react-sdk

Version:
8 lines (7 loc) 303 B
import React, { HTMLAttributes } from "react"; export interface SettingsSubsectionHeadingProps extends HTMLAttributes<HTMLDivElement> { heading: string; legacy?: boolean; children?: React.ReactNode; } export declare const SettingsSubsectionHeading: React.FC<SettingsSubsectionHeadingProps>;