@aappddeevv/dynamics-client-ui
Version:
## What is it? A library to help you create great dynamics applications.
19 lines (18 loc) • 472 B
TypeScript
/// <reference types="react" />
import * as React from "react";
export interface Styles {
root?: Record<string, any>;
line?: Record<string, any>;
text?: Record<string, any>;
}
export declare const defaultStyles: Styles;
export interface Props {
styles?: Styles;
text?: React.ReactNode;
}
/**
* Use textStyle.order: -1 to shift label to left and then you may want
* to adjust margins.
*/
export declare const Hr: React.SFC<Props>;
export default Hr;