@moderneinc/neo-styled-components 4.0.0-next.e0896f → 4.0.0-next.e5eac5
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/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/NavItem/NavItem.d.ts +0 -26
package/dist/index.esm.js
CHANGED
|
@@ -2960,7 +2960,7 @@ const StyledChip$1 = styled(Chip)(({ theme, size, variant, color }) => ({
|
|
|
2960
2960
|
* - Intent (Neutral|Error|Warning|Success|Info|Violet|Beta) → intent (default|error|warning|success|info|violet|beta)
|
|
2961
2961
|
* - TEXT Label → label prop
|
|
2962
2962
|
*/
|
|
2963
|
-
function NeoTag({ size = 'small', variant = 'outlined', intent, ...props }) {
|
|
2963
|
+
function NeoTag({ size = 'small', variant = 'outlined', intent = 'default', ...props }) {
|
|
2964
2964
|
return jsx(StyledChip$1, { size: size, variant: variant, color: intent, ...props });
|
|
2965
2965
|
}
|
|
2966
2966
|
NeoTag.displayName = 'NeoTag';
|