@ni/spright-components 5.0.2 → 5.1.0
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.
|
@@ -17879,6 +17879,10 @@
|
|
|
17879
17879
|
name: 'circle_check_16_x_16',
|
|
17880
17880
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6m-1.212 9.2L4 8.388 5.225 7.2l1.553 1.61 4.06-4.01L12 6.013Z" class="cls-1"/></svg>`,
|
|
17881
17881
|
};
|
|
17882
|
+
const circleMinus16X16 = {
|
|
17883
|
+
name: 'circle_minus_16_x_16',
|
|
17884
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C4.69 2 2 4.69 2 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6m3 7H5V7h6z" class="cls-1"/></svg>`,
|
|
17885
|
+
};
|
|
17882
17886
|
const circlePartialBroken16X16 = {
|
|
17883
17887
|
name: 'circle_partial_broken_16_x_16',
|
|
17884
17888
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9 2v2.686a3.475 3.475 0 0 1 0 6.628V14A6.1 6.1 0 0 0 9 2" class="cls-1"/><path d="M7 11.314a3.475 3.475 0 0 1 0-6.628V2a6.1 6.1 0 0 0 0 12Z" class="cls-2"/></svg>`,
|
|
@@ -22882,6 +22886,18 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
22882
22886
|
}
|
|
22883
22887
|
registerIcon('icon-circle-filled', IconCircleFilled);
|
|
22884
22888
|
|
|
22889
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
22890
|
+
// See generation source in nimble-components/build/generate-icons
|
|
22891
|
+
/**
|
|
22892
|
+
* The icon component for the 'circleMinus' icon
|
|
22893
|
+
*/
|
|
22894
|
+
class IconCircleMinus extends Icon {
|
|
22895
|
+
constructor() {
|
|
22896
|
+
super(circleMinus16X16);
|
|
22897
|
+
}
|
|
22898
|
+
}
|
|
22899
|
+
registerIcon('icon-circle-minus', IconCircleMinus);
|
|
22900
|
+
|
|
22885
22901
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
22886
22902
|
// See generation source in nimble-components/build/generate-icons
|
|
22887
22903
|
/**
|