lucid-ui
Version:
A UI component library from AppNexus.
21 lines (20 loc) • 692 B
TypeScript
import React from 'react';
import { StandardProps } from '../../util/component-types';
export interface IUnderlineProps extends StandardProps, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> {
/** The first match of the given pattern has the underline style applied to it. */
match?: string | RegExp;
}
export declare const Underline: {
({ className, children, match, ...passThroughs }: IUnderlineProps): React.ReactElement;
displayName: string;
peek: {
description: string;
categories: string[];
};
propTypes: {
className: any;
children: any;
match: any;
};
};
export default Underline;