| import { Center, For, Stack } from "@chakra-ui/react" | |
| export const TokensFocusRing = () => { | |
| return ( | |
| <Stack gap="4"> | |
| <For each={["inside", "outside", "mixed"]}> | |
| {(focusRing) => ( | |
| <Center | |
| h="20" | |
| bg="bg" | |
| borderWidth="1px" | |
| focusRing={focusRing} | |
| data-focus | |
| > | |
| {focusRing} | |
| </Center> | |
| )} | |
| </For> | |
| </Stack> | |
| ) | |
| } | |