@devopness/ui-react
Version:
Devopness Design System React Components - Painless essential DevOps to everyone
25 lines (24 loc) • 1.94 kB
TypeScript
type DetailContentValueProps = {
$isBoldFontWeight?: boolean;
};
type DetailContentInformationProps = {
$noIcon?: boolean;
$isIconAfterLabel?: boolean;
$backgroundColor?: string;
};
type ContentDetailProps = {
type?: 'default' | 'warning';
};
type StyledProps = {
$backgroundColor?: string;
color?: string;
};
declare const DetailContentInformation: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLElement>, HTMLElement>, DetailContentInformationProps>> & string;
declare const DetailContentValue: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, DetailContentValueProps>> & string;
declare const PrefixWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
$showMarginRight?: boolean;
}>> & string;
declare const ContentIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps>> & string;
declare const ContentDetail: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLElement>, HTMLElement>, ContentDetailProps>> & string;
export { ContentDetail, ContentIcon, DetailContentInformation, DetailContentValue, PrefixWrapper, };
export type { ContentDetailProps, DetailContentInformationProps, DetailContentValueProps, };