-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathargonProfile.Rd
78 lines (70 loc) · 1.55 KB
/
argonProfile.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/argonProfile.R
\name{argonProfile}
\alias{argonProfile}
\title{Create a Boostrap 4 profile card}
\usage{
argonProfile(
...,
title = NULL,
subtitle = NULL,
src = NULL,
url = NULL,
url_1 = NULL,
url_2 = NULL,
stats
)
}
\arguments{
\item{...}{Any element.}
\item{title}{Profile title.}
\item{subtitle}{Profile subtitle.}
\item{src}{Profile image path or url.}
\item{url}{Main url.}
\item{url_1}{First social link.}
\item{url_2}{Second social link.}
\item{stats}{Stats items. See \link{argonProfileStats}.}
}
\description{
Build an argon profile card
}
\note{
Do not work on argonR. Only for argon Dash
}
\examples{
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."
)
}
}
\author{
David Granjon, \email{[email protected]}
}