fui-fancyui
Version:
FancyUI Libary
16 lines (15 loc) • 932 B
TypeScript
import { CSSProp } from 'styled-components';
import { TTheme } from '../../../types/TTheme';
import { TTextAlignLRC } from '../../../types/TTextAlignLRC';
import { TTextAlignLR } from '../../../types/TTextAlignLR';
type TLabelWrapper = {
$align?: TTextAlignLRC;
$externalStyle: CSSProp;
theme: TTheme;
};
export declare const LabelWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, TLabelWrapper>> & string;
export declare const InputWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
$alignInput?: TTextAlignLR;
theme: TTheme;
}>> & string;
export {};