playbook_ui_docs 13.30.0.pre.alpha.20240515remotebuildkitconversion3150 → 13.31.0

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: feb3f7b0088898a56fd33f513dc7c8b3ab7cc1bfcb4f405e5aba095ddf6c4e9c
4
+ data.tar.gz: 4a0f3a03d13e89a26268dfdde7e7d151c3398f82465468378c26d53287a6611d
5
5
  SHA512:
6
- metadata.gz: 4831824bba5a5ae835508c73147d2e3158fc659ea9961851177aef285f2b92e9c0d279b20348724e010ef41928bf787baaf62b4e027e0e18b031ac5b67f0915f
7
- data.tar.gz: 8cddbc6e8e59f9c0174d74a7b9c583825d3462b35990f921662b55b384012c355d2c887f1f7889141ed7977422c04dcea01e880e24bbf8847a9a6df18b7b3fa9
6
+ metadata.gz: 49aee6ca71429ab79d36cd539f27dc2b4a389b0e1470f6b8cceabfe2d0110f00af73df3239dfbd685b7a525fe206841681abf05d7f1d2774771079fbd3bccc83
7
+ data.tar.gz: 73eb5c34285155897770c87eb236b8b8f6064f71efaedc8c544155c246144033f1d4ab61cd93f31ccd06d716983b47a0f4bb7cb5ee42899054f51e470d616505
@@ -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>