aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/sandbox.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/sandbox.tsx')
-rw-r--r--packages/instant/src/components/sandbox.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/instant/src/components/sandbox.tsx b/packages/instant/src/components/sandbox.tsx
deleted file mode 100644
index b2c64efd3..000000000
--- a/packages/instant/src/components/sandbox.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import * as React from 'react';
-
-import { MediaChoice, stylesForMedia } from '../style/media';
-import { styled } from '../style/theme';
-
-interface SandboxProps {
- width: MediaChoice;
-}
-export const Sandbox =
- styled.div <
- SandboxProps >
- `
- display: block;
- border: 1px solid black;
- background-color: yellow;
- ${props => stylesForMedia('width', props.width)}
- `;