@sonardigital/carbon-ui 1.1.76 → 1.1.77

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@sonardigital/carbon-ui",
3
- "version": "1.1.76",
3
+ "version": "1.1.77",
4
4
  "description": "",
5
5
  "main": "src/index.ts",
6
6
  "files": [
@@ -558,6 +558,42 @@ export const components: Components<
558
558
  backgroundColor: 'background.paper',
559
559
  },
560
560
  },
561
+ {
562
+ props: {
563
+ // TODO: fix this type
564
+ // eslint-disable-next-line
565
+ // @ts-ignore
566
+ variant: 'boxed',
567
+ color: 'primary',
568
+ },
569
+ style: ({ theme }) => ({
570
+ width: 50,
571
+ height: 50,
572
+ display: 'flex',
573
+ backgroundColor: theme.palette.primary.light,
574
+ padding: 0,
575
+ alignItems: 'center',
576
+ justifyContent: 'center',
577
+ }),
578
+ },
579
+ {
580
+ props: {
581
+ // TODO: fix this type
582
+ // eslint-disable-next-line
583
+ // @ts-ignore
584
+ variant: 'boxed',
585
+ color: 'secondary',
586
+ },
587
+ style: ({ theme }) => ({
588
+ width: 50,
589
+ height: 50,
590
+ display: 'flex',
591
+ backgroundColor: theme.palette.secondary.light,
592
+ padding: 0,
593
+ alignItems: 'center',
594
+ justifyContent: 'center',
595
+ }),
596
+ },
561
597
  {
562
598
  props: {
563
599
  // TODO: fix this type