Esta página aún no está disponible en tu idioma.
A component to display user info.
---import { User } from 'studiocms:ui/components';---
<User name='John Doe' description='A cool dude' />You can provide an avatar using the same rules as the Image ⤴ component.
To change the loading behavior, you can pass the loading attribute. It is passed to the <Image /> component.
---import { User } from 'studiocms:ui/components';import ProfileImage from '~/assets/profile.png'---
<User name='John Doe' loading='eager' description='A cool dude' avatar={ProfileImage} />