@skbkontur/ui-kit
Version:
37 lines (36 loc) • 985 B
TypeScript
/// <reference types="react" />
import React from "react";
import { StyledComponentClass } from "styled-components";
export declare type GappedAlign = "baseline" | "center" | "flex-start" | "flex-end";
export interface GappedProps {
gap?: number;
vertical?: boolean;
align?: GappedAlign;
}
declare const Gapped: StyledComponentClass<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & GappedProps, {
common: any;
button: {
[key: string]: any;
};
link: {
[key: string]: any;
};
text: {
colorDefault: string;
colorInvert: string;
colorDisabled: string;
};
checkbox: {
[key: string]: any;
};
input: {
[key: string]: any;
};
internalMenu: {
[key: string]: any;
};
menuItem: {
[key: string]: any;
};
}, React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & GappedProps>;
export default Gapped;