@newhighsco/chipset 6.21.0 → 6.21.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@newhighsco/chipset",
3
3
  "description": "Shareable, theme-able component library by New High Score",
4
- "version": "6.21.0",
4
+ "version": "6.21.1",
5
5
  "author": "New High Score",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -14,7 +14,8 @@ const Grid = ({
14
14
  valign,
15
15
  children,
16
16
  theme,
17
- className
17
+ className,
18
+ ...rest
18
19
  }) => {
19
20
  if (!children) return null
20
21
 
@@ -29,6 +30,7 @@ const Grid = ({
29
30
  valign && theme[`valign-${valign}`],
30
31
  className
31
32
  )}
33
+ {...rest}
32
34
  >
33
35
  {children}
34
36
  </div>