10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
const StyledPeekViewport = styled.div`
|
||
|
background-color: inherit;
|
||
|
height: inherit;
|
||
|
width: inherit;
|
||
|
`;
|
||
|
|
||
|
export default StyledPeekViewport;
|