playbook_ui_docs 13.30.0.pre.alpha.20240515remotebuildkitconversion3150 → 13.31.0.pre.alpha.play1262iconstyles3171
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: 7d0b9fae97f9358c52a1e11ba8377d8484d7702a3a02eeeba8ce562102f7bc23
|
4
|
+
data.tar.gz: 6a8639c6df0740925f58c74079674bcf554a3d198fa85707f42785fcb9449649
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2766a508872341289243ec5752d7dab8f32123dd07ab0bcb6cc1939e53ee9265f21585f6a990870926096303dc317282db7100edad23fca8c66ca8c40bb7699b
|
7
|
+
data.tar.gz: 5d4a67a748bbd75ba7961d803394ec3b356cce3e23e4a664594ac8c778c7efd3fd8841ffc8831c25ab8974515ed38803af5fd9d92a908e24012f2446feb35ff9
|
@@ -1,6 +1 @@
|
|
1
|
-
<%= pb_rails("icon", props: { icon: "
|
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
|
+
<%= pb_rails("icon", props: { icon: "user", fixed_width: true }) %>
|
@@ -1,29 +1,12 @@
|
|
1
1
|
import React from "react"
|
2
|
-
|
3
2
|
import Icon from "../_icon"
|
4
|
-
import {Caption} from "../.."
|
5
3
|
|
6
4
|
const IconDefault = (props) => {
|
7
5
|
return (
|
8
6
|
<div>
|
9
|
-
<Icon
|
10
|
-
|
11
|
-
|
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'
|
7
|
+
<Icon
|
8
|
+
fixedWidth
|
9
|
+
icon="user"
|
27
10
|
{...props}
|
28
11
|
/>
|
29
12
|
</div>
|