Skip to content

Commit

Permalink
Revert Box changes
Browse files Browse the repository at this point in the history
  • Loading branch information
david0xd committed Jan 9, 2025
1 parent f3306bf commit 9953986
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/snaps-sdk/src/jsx/components/Box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { createSnapComponent } from '../component';
* @property direction - The direction to stack the components within the box. Defaults to `vertical`.
* @property alignment - The alignment mode to use within the box. Defaults to `start`.
* @property center - Whether to center the children within the box. Defaults to `false`.
* @property backgroundColor - Whether the Box needs color adjustments. Defaults to undefined.
*/
export type BoxProps = {
// We can't use `JSXElement` because it causes a circular reference.
Expand All @@ -22,7 +21,6 @@ export type BoxProps = {
| 'space-around'
| undefined;
center?: boolean | undefined;
backgroundColor?: string | undefined;
};

const TYPE = 'Box';
Expand Down

0 comments on commit 9953986

Please sign in to comment.