|
9 | 9 | ## Preview
|
10 | 10 |
|
11 | 11 | <Preview>
|
12 |
| - <Dialog> |
13 |
| - <Dialog.Trigger asChild> |
14 |
| - <Button variant="ghost" size="small">Dialog button</Button> |
15 |
| - </Dialog.Trigger> |
16 |
| - <Dialog.Content close> |
17 |
| - <Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}>Dialog Heading</Text> |
18 |
| - <Text size="3" style={{ lineHeight: '25px' }}> |
19 |
| - There are 5 variants to choose from. Use is for positive states. This is a link |
20 |
| - Traditional business literature won’t help you solve it- most of that stuff is |
21 |
| - focused on life after product/market fit, after the Trough of Sorrow. |
22 |
| - </Text> |
23 |
| - </Dialog.Content> |
24 |
| - </Dialog> |
| 12 | + <Flex |
| 13 | + style={{ |
| 14 | + flexDirection: 'column', |
| 15 | + alignItems: 'center', |
| 16 | + gap: '12px', |
| 17 | + }} |
| 18 | + > |
| 19 | + <Dialog> |
| 20 | + <Dialog.Trigger asChild> |
| 21 | + <Button variant="ghost" size="small"> |
| 22 | + Dialog button |
| 23 | + </Button> |
| 24 | + </Dialog.Trigger> |
| 25 | + <Dialog.Content close> |
| 26 | + <Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}> |
| 27 | + Dialog Heading |
| 28 | + </Text> |
| 29 | + <Text size="3" style={{ lineHeight: '25px' }}> |
| 30 | + There are 5 variants to choose from. Use is for positive states. This |
| 31 | + is a link Traditional business literature won’t help you solve it- |
| 32 | + most of that stuff is focused on life after product/market fit, after |
| 33 | + the Trough of Sorrow. |
| 34 | + </Text> |
| 35 | + </Dialog.Content> |
| 36 | + </Dialog> |
| 37 | + |
| 38 | + <Dialog> |
| 39 | + <Dialog.Trigger asChild> |
| 40 | + <Button variant="ghost" size="small"> |
| 41 | + Dialog with blur button |
| 42 | + </Button> |
| 43 | + </Dialog.Trigger> |
| 44 | + <Dialog.Content overlayBlur={true} close> |
| 45 | + <Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}> |
| 46 | + Dialog Heading |
| 47 | + </Text> |
| 48 | + <Text size="3" style={{ lineHeight: '25px' }}> |
| 49 | + There are 5 variants to choose from. Use is for positive states. This |
| 50 | + is a link Traditional business literature won’t help you solve it- |
| 51 | + most of that stuff is focused on life after product/market fit, after |
| 52 | + the Trough of Sorrow. |
| 53 | + </Text> |
| 54 | + </Dialog.Content> |
| 55 | + </Dialog> |
| 56 | + </Flex> |
25 | 57 | </Preview>
|
26 | 58 |
|
27 | 59 | ## Installation
|
@@ -53,5 +85,25 @@ import { Dialog } from '@raystack/apsara'
|
53 | 85 | </Text>
|
54 | 86 | </Dialog.Content>
|
55 | 87 | </Dialog>
|
| 88 | +
|
| 89 | +<Dialog> |
| 90 | + <Dialog.Trigger asChild> |
| 91 | + <Button variant="ghost" size="small"> |
| 92 | + Dialog with blur button |
| 93 | + </Button> |
| 94 | + </Dialog.Trigger> |
| 95 | + <Dialog.Content overlayBlur={true} close> |
| 96 | + <Text size="5" style={{ fontWeight: 500, marginBottom: '12px' }}> |
| 97 | + Dialog Heading |
| 98 | + </Text> |
| 99 | + <Text size="3" style={{ lineHeight: '25px' }}> |
| 100 | + There are 5 variants to choose from. Use is for positive states. This |
| 101 | + is a link Traditional business literature won’t help you solve it- |
| 102 | + most of that stuff is focused on life after product/market fit, after |
| 103 | + the Trough of Sorrow. |
| 104 | + </Text> |
| 105 | + </Dialog.Content> |
| 106 | +</Dialog> |
| 107 | +
|
56 | 108 | `} border />
|
57 | 109 | </LiveProvider>
|
0 commit comments