Skip to content

Commit 9953986

Browse files
committed
Revert Box changes
1 parent f3306bf commit 9953986

File tree

1 file changed

+0
-2
lines changed
  • packages/snaps-sdk/src/jsx/components

1 file changed

+0
-2
lines changed

packages/snaps-sdk/src/jsx/components/Box.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { createSnapComponent } from '../component';
88
* @property direction - The direction to stack the components within the box. Defaults to `vertical`.
99
* @property alignment - The alignment mode to use within the box. Defaults to `start`.
1010
* @property center - Whether to center the children within the box. Defaults to `false`.
11-
* @property backgroundColor - Whether the Box needs color adjustments. Defaults to undefined.
1211
*/
1312
export type BoxProps = {
1413
// We can't use `JSXElement` because it causes a circular reference.
@@ -22,7 +21,6 @@ export type BoxProps = {
2221
| 'space-around'
2322
| undefined;
2423
center?: boolean | undefined;
25-
backgroundColor?: string | undefined;
2624
};
2725

2826
const TYPE = 'Box';

0 commit comments

Comments
 (0)