@companycam/slab-web 2.4.0 → 2.4.2
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.
- package/index.js +204 -198
- package/index.mjs +1459 -1451
- package/lib/Label/Label.d.ts +1 -1
- package/package.json +1 -1
package/lib/Label/Label.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export type LabelProps = ComponentPropsWithRef<'span'> & {
|
|
|
4
4
|
color: LabelColor;
|
|
5
5
|
};
|
|
6
6
|
/**
|
|
7
|
-
- Colors correspond to our label color [design tokens](https://slab.cocam.co/foundations/search-design-tokens).
|
|
7
|
+
- Colors correspond to our label color [design tokens](https://slab.cocam.co/foundations/search-design-tokens).
|
|
8
8
|
- `Label` is not interactive: Wrap labels with a button to make them clickable.
|
|
9
9
|
*/
|
|
10
10
|
export declare function Label({ color, ...props }: LabelProps): import("react/jsx-runtime").JSX.Element;
|