playbook_ui_docs 13.30.0.pre.alpha.play1367contenttagnoninputkits3159 → 13.30.0.pre.alpha.20240515remotebuildkitconversion3150
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6cceb594cd31b390837b3358b6eca62a416027b0344fb09dffe7ba18e026dbc2
|
4
|
+
data.tar.gz: dcb581e8619d51cab0a93d3d7cf0fc07e1210aa0d9d50105d4730080f5ba2830
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4831824bba5a5ae835508c73147d2e3158fc659ea9961851177aef285f2b92e9c0d279b20348724e010ef41928bf787baaf62b4e027e0e18b031ac5b67f0915f
|
7
|
+
data.tar.gz: 8cddbc6e8e59f9c0174d74a7b9c583825d3462b35990f921662b55b384012c355d2c887f1f7889141ed7977422c04dcea01e880e24bbf8847a9a6df18b7b3fa9
|
@@ -1 +1,6 @@
|
|
1
|
-
<%= pb_rails("icon", props: { icon: "
|
1
|
+
<%= pb_rails("icon", props: { icon: "angles-down", fixed_width: true }) %>
|
2
|
+
<%= pb_rails("icon", props: { icon: "circle-arrow-right", fixed_width: true }) %>
|
3
|
+
<%= pb_rails("icon", props: { icon: "arrow-circle-right", fixed_width: true }) %>
|
4
|
+
|
5
|
+
<%= pb_rails("caption", props: { text: "Font Awesome (no alias & not in our Playbook-icons lib)", margin_y: "md" }) %>
|
6
|
+
<%= pb_rails("icon", props: { icon: "elephant", fixed_width: true }) %>
|
@@ -1,12 +1,29 @@
|
|
1
1
|
import React from "react"
|
2
|
+
|
2
3
|
import Icon from "../_icon"
|
4
|
+
import {Caption} from "../.."
|
3
5
|
|
4
6
|
const IconDefault = (props) => {
|
5
7
|
return (
|
6
8
|
<div>
|
7
|
-
<Icon
|
8
|
-
|
9
|
-
|
9
|
+
<Icon fixedWidth
|
10
|
+
icon='angles-down'
|
11
|
+
{...props}
|
12
|
+
/>
|
13
|
+
<Icon fixedWidth
|
14
|
+
icon='circle-arrow-right'
|
15
|
+
{...props}
|
16
|
+
/>
|
17
|
+
<Icon fixedWidth
|
18
|
+
icon='arrow-circle-right'
|
19
|
+
{...props}
|
20
|
+
/>
|
21
|
+
<Caption
|
22
|
+
marginY='md'
|
23
|
+
text='Font Awesome (no alias & not in our Playbook-icons lib)'
|
24
|
+
/>
|
25
|
+
<Icon fixedWidth
|
26
|
+
icon='elephant'
|
10
27
|
{...props}
|
11
28
|
/>
|
12
29
|
</div>
|