File size: 236 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import { Avatar } from "@chakra-ui/react"
export const AvatarBasic = () => {
return (
<Avatar.Root>
<Avatar.Fallback name="Segun Adebayo" />
<Avatar.Image src="https://bit.ly/sage-adebayo" />
</Avatar.Root>
)
}
|