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: 6cceb594cd31b390837b3358b6eca62a416027b0344fb09dffe7ba18e026dbc2
4
- data.tar.gz: dcb581e8619d51cab0a93d3d7cf0fc07e1210aa0d9d50105d4730080f5ba2830
3
+ metadata.gz: 7d0b9fae97f9358c52a1e11ba8377d8484d7702a3a02eeeba8ce562102f7bc23
4
+ data.tar.gz: 6a8639c6df0740925f58c74079674bcf554a3d198fa85707f42785fcb9449649
5
5
  SHA512:
6
- metadata.gz: 4831824bba5a5ae835508c73147d2e3158fc659ea9961851177aef285f2b92e9c0d279b20348724e010ef41928bf787baaf62b4e027e0e18b031ac5b67f0915f
7
- data.tar.gz: 8cddbc6e8e59f9c0174d74a7b9c583825d3462b35990f921662b55b384012c355d2c887f1f7889141ed7977422c04dcea01e880e24bbf8847a9a6df18b7b3fa9
6
+ metadata.gz: 2766a508872341289243ec5752d7dab8f32123dd07ab0bcb6cc1939e53ee9265f21585f6a990870926096303dc317282db7100edad23fca8c66ca8c40bb7699b
7
+ data.tar.gz: 5d4a67a748bbd75ba7961d803394ec3b356cce3e23e4a664594ac8c778c7efd3fd8841ffc8831c25ab8974515ed38803af5fd9d92a908e24012f2446feb35ff9
@@ -1,6 +1 @@
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
+ <%= 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 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'
7
+ <Icon
8
+ fixedWidth
9
+ icon="user"
27
10
  {...props}
28
11
  />
29
12
  </div>