lucevias 0.5.0 → 0.6.1
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/dist/Icon.d.ts +6 -0
- package/dist/index.js +7252 -7944
- package/package.json +1 -1
package/dist/Icon.d.ts
CHANGED
|
@@ -5,6 +5,12 @@ export type IconProps = Omit<SVGProps<SVGSVGElement>, 'color'> & {
|
|
|
5
5
|
size?: number | string;
|
|
6
6
|
/** Stroke/fill color. Inherited from the parent by default. */
|
|
7
7
|
color?: string;
|
|
8
|
+
/**
|
|
9
|
+
* Color of the muted layer in the duotone weight. Defaults to `color`, so
|
|
10
|
+
* duotone renders in a single color until you ask for a second one. No effect
|
|
11
|
+
* on the other weights, which are drawn in one color to begin with.
|
|
12
|
+
*/
|
|
13
|
+
accentColor?: string;
|
|
8
14
|
/** Weight. A missing one falls back to regular. */
|
|
9
15
|
weight?: Weight;
|
|
10
16
|
};
|