We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b97a94b commit cee0915Copy full SHA for cee0915
website/content/components/popout-wrapper.mdx
@@ -25,10 +25,12 @@ return (
25
<Button onClick={() => setIsOpen(true)}>Открыть окно</Button>
26
{isOpen && (
27
<PopoutWrapper onClick={() => setIsOpen(false)}>
28
- <Div>
29
- <Title>Всплывающее окно</Title>
30
- <Text>Содержимое всплывающего окна</Text>
31
- </Div>
+ <Card>
+ <Box padding="system">
+ <Title>Всплывающее окно</Title>
+ <Text>Содержимое всплывающего окна</Text>
32
+ </Box>
33
+ </Card>
34
</PopoutWrapper>
35
)}
36
</>
0 commit comments