You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Component for `Made with` like 
4
+
5
+
## API
6
+
7
+
### `maker (optional; shape)`
8
+
9
+
Specifies the formatting of the maker
10
+
11
+
*`identifier (optional; string)`
12
+
13
+
When specified, is used to format the displayed author.
14
+
15
+
If no `identifier` is specified, `null` is returned.
16
+
17
+
When `identifier` receives an email address, it creates a hyperlink with a `mailto` URL (using the given email address) and a trailing [`FontAwesome``envelope` icon](https://fontawesome.com/icons/envelope?style=solid). The displayed value associated with the `mailto` URL is the `display` prop value or the given email address.
18
+
19
+
When `identifier` receives a URL, it creates a hyperlink that points to the given URL and a trailing [`FontAwesome``link` icon](https://fontawesome.com/icons/link?style=solid).
20
+
21
+
The only exceptions to this are when the URL has a `twitter.com` or `github.com` host, when the icons are the [`FontAwesome``Twitter` icon](https://fontawesome.com/icons/twitter?style=brands) and the [`FontAwesome``GitHub` icon](https://fontawesome.com/icons/github?style=brands)
22
+
23
+
The displayed value associated with the hyperlink is the `display` prop value or the given URL.
24
+
25
+
If the `identifier` is not an email address or a URL, it is wrapped in a `<span>`, unless the `display` prop is defined.
26
+
27
+
*`display(optional; string, element)`
28
+
29
+
When specified, is the displayed value that represents the maker.
30
+
31
+
*`showIcon (optional; boolean)`
32
+
33
+
Determines whether or not to show the icon generated by analyzing the `identifier` prop
34
+
35
+
*`iconColor (optional; string)`
36
+
37
+
Determines the color of any icon generated by analyzing the `identifier` prop
38
+
39
+
### `love (optional; boolean)`
40
+
41
+
Specifies if [the `FontAwesome``heart` icon](https://fontawesome.com/icons/heart?style=solid) should be used. By default, `false`.
42
+
43
+
### `react (optional; boolean)`
44
+
45
+
Specifies if [the `FontAwesome``react` icon](https://fontawesome.com/icons/heart?style=solid) should be used. By default, `false`.
46
+
47
+
### `separator (optional; string or element)`
48
+
49
+
Specifies how each "made with" type is separated. Be default, `and`.
Private (i.e API is not publicly exposed) component that determines the maker.
4
+
5
+
## API
6
+
7
+
### `identifier (optional; string)`
8
+
9
+
When specified, is used to format the displayed maker.
10
+
11
+
If no `identifier` is specified, `null` is returned.
12
+
13
+
When `identifier` receives an email address, it creates a hyperlink with a `mailto` URL (using the given email address) and a trailing [`FontAwesome``envelope` icon](https://fontawesome.com/icons/envelope?style=solid). The displayed value associated with the `mailto` URL is the `display` prop value or the given email address.
14
+
15
+
When `identifier` receives a URL, it creates a hyperlink that points to the given URL and a trailing [`FontAwesome``link` icon](https://fontawesome.com/icons/link?style=solid).
16
+
17
+
The only exceptions to this are when the URL has a `twitter.com` or `github.com` host, when the icons are the [`FontAwesome``Twitter` icon](https://fontawesome.com/icons/twitter?style=brands) and the [`FontAwesome``GitHub` icon](https://fontawesome.com/icons/github?style=brands)
18
+
19
+
The displayed value associated with the hyperlink is the `display` prop value or the given URL.
20
+
21
+
If the `identifier` is not an email address or a URL, it is wrapped in a `<span>`, unless the `display` prop is defined.
22
+
23
+
### `display(optional; string, element)`
24
+
25
+
When specified, is the displayed value that represents the maker.
26
+
27
+
### `showIcon (optional; boolean)`
28
+
29
+
Determines whether or not to show the icon generated by analyzing the `identifier` prop
30
+
31
+
### `iconColor (optional; string)`
32
+
33
+
Determines the color of any icon generated by analyzing the `identifier` prop
0 commit comments