({ children })
| 63 | } |
| 64 | |
| 65 | function Code({ children }) { |
| 66 | return ( |
| 67 | <Box |
| 68 | as="span" |
| 69 | padding="025" |
| 70 | paddingInlineStart="100" |
| 71 | paddingInlineEnd="100" |
| 72 | background="bg-surface-active" |
| 73 | borderWidth="100" |
| 74 | borderColor="border" |
| 75 | borderRadius="100" |
| 76 | > |
| 77 | <code>{children}</code> |
| 78 | </Box> |
| 79 | ); |
| 80 | } |
nothing calls this directly
no outgoing calls
no test coverage detected