@primer/components
Version:
Primer react components
12 lines (11 loc) • 650 B
TypeScript
import { BorderColorProps } from 'styled-system';
import { SystemCommonProps } from './constants';
import { SxProp } from './sx';
import { ComponentProps } from './utils/types';
declare const Label: import("styled-components").StyledComponent<"span", any, {
variant?: "large" | "medium" | "small" | "xl" | undefined;
dropshadow?: boolean | undefined;
outline?: boolean | undefined;
} & BorderColorProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & SystemCommonProps & SxProp, never>;
export declare type LabelProps = ComponentProps<typeof Label>;
export default Label;