Default Plaque

@Composable
fun DefaultPlaque(    colors: ListItemColors = ListItemDefaults.colors(),     profilePicSize: Dp = 50.dp,     profilePic: String,     completeName: String,     tagName: String,     supportingContent: @Composable () -> Unit? = null,     trailingContent: @Composable () -> Unit? = null)

Function to create an RefyUser details plaque

Parameters

colors

: the colors for the ListItem component

profilePicSize

: the size of the profile picture

completeName

: the complete name of the user

tagName

: the tag name of the user

supportingContent

: the content to place in the supporting zone

trailingContent

: the content to place in the traling zone