UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

14 lines (13 loc) 456 B
import React from "react"; import { TestableComponent } from "../interfaces"; export interface InlineTextProps extends React.HTMLAttributes<HTMLElement>, TestableComponent { /** * Additional CSS class name. */ className?: string; } /** * Forces all children to be displayed as inline content. */ export declare const InlineText: ({ className, children, ...otherProps }: InlineTextProps) => React.JSX.Element; export default InlineText;