@codacy/ui-components 0.64.6 → 0.64.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
1
2
|
import { SpaceProps, LayoutProps } from '../system-props/types';
|
|
2
3
|
import { ContainerComponentProps } from '../types';
|
|
3
4
|
export declare type PillLabelStatus = 'info' | 'warning' | 'error' | 'success' | 'default' | 'attention';
|
|
4
|
-
export interface PillLabelProps extends ContainerComponentProps, SpaceProps, LayoutProps {
|
|
5
|
+
export interface PillLabelProps extends ContainerComponentProps, SpaceProps, LayoutProps, HTMLAttributes<HTMLDivElement> {
|
|
5
6
|
/** Status of PillLabel */
|
|
6
7
|
status?: PillLabelStatus;
|
|
7
8
|
/** Inline or full-width */
|