Build an argon profile card
argonProfile(
...,
title = NULL,
subtitle = NULL,
src = NULL,
url = NULL,
url_1 = NULL,
url_2 = NULL,
stats
)
Any element.
Profile title.
Profile subtitle.
Profile image path or url.
Main url.
First social link.
Second social link.
Stats items. See argonProfileStats.
Do not work on argonR. Only for argon Dash
if(interactive()){
library(argonR)
argonProfile(
title = "John",
subtitle = "Japan, Kagoshima",
src = "https://image.flaticon.com/icons/svg/1006/1006540.svg",
url = "https://www.google.com",
url_1 = "https://www.google.com",
url_2 = "https://www.google.com",
stats = argonProfileStats(
argonProfileStat(
value = 22,
description = "Friends"
),
argonProfileStat(
value = 10,
description = "Photos"
),
argonProfileStat(
value = 89,
description = "Comments"
)
),
"An artist of considerable range, Ryan —
the name taken by Melbourne-raised,
Brooklyn-based Nick Murphy — writes,
performs and records all of his own music,
giving it a warm, intimate feel with a solid
groove structure. An artist of considerable
range."
)
}