<%= pb_rails("icon", props: { icon: "question-circle", fixed_width: true, flip: "horizontal", size: "2x" }) %> <%= pb_rails("icon", props: { icon: "question-circle", fixed_width: true, flip: "vertical", size: "2x" }) %> <%= pb_rails("icon", props: { icon: "question-circle", fixed_width: true, flip: "both", size: "2x" }) %>
Spin
Pulse
A spinner icon can show a user that something is loading or saving.
Icon Pull can be used to indicate that the user can perform a pull action.
Large
Small
XSmall
1x
2x
3x
4x
5x
6x
7x
8x
9x
10x
<p><%= pb_rails("icon", props: { icon: "user", size: "lg" }) %> <span>Large</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "sm" }) %> <span>Small</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "xs" }) %> <span>XSmall</span></p> <br/><br/> <p><%= pb_rails("icon", props: { icon: "user", size: "1x" }) %> <span>1x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "2x" }) %> <span>2x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "3x" }) %> <span>3x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "4x" }) %> <span>4x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "5x" }) %> <span>5x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "6x" }) %> <span>6x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "7x" }) %> <span>7x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "8x" }) %> <span>8x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "9x" }) %> <span>9x</span></p> <p><%= pb_rails("icon", props: { icon: "user", size: "10x" }) %> <span>10x</span></p>
When using custom icons it is important to introduce a "clean" SVG. In order to ensure these custom icons perform as intended within your kit(s), ensure these things have been modified from the original SVG markup:
Attributes must be React compatible e.g. xmlns:xlink should be xmlnsXlink and so on. There should be no hyphenated attributes and no semi-colons!.
Fill colors with regards to g or path nodes, e.g. fill="black", should be replaced with currentColor ala fill="currentColor". Your mileage may vary depending on the complexity of your SVG.
Pay attention to your custom icon's dimensions and viewBox attribute. It is best to use a viewBox="0 0 512 512" starting point when designing instead of trying to retrofit the viewbox afterwards!
You must source your own SVG into component/view you are working on. This can easily be done in programmatic and maintainable ways.
Sending the absolute path to the icon prop results in an <SVG> tag within the working view.
<%# SVG fill color inherited from css color property %> <div class="icon-wrapper"> <% svg_url = "https://upload.wikimedia.org/wikipedia/commons/3/3b/Wrench_font_awesome.svg" %> <p><%= pb_rails("icon", props: { icon: svg_url } ) %></p> <p><%= pb_rails("icon", props: { rotation: 90, icon: svg_url, size: "2x" } ) %></p> <p><%= pb_rails("icon", props: { spin: true, icon: svg_url, size: "3x" } ) %></p> <p><%= pb_rails("icon", props: { size: "5x", icon: svg_url } ) %></p> <p><%= pb_rails("icon", props: { flip: "horizontal", size: "5x", icon: svg_url } ) %></p> </div>
Our Icon kit allows integration with FontAwesome's custom kit functionality out-of-the-box.
All you need to do is 3 things:
1) Import your custom-icon.js file as outlined in the FontAwesome docs.
2) Use our fontStyle prop called "fak" so that our Icon component knows you are using a "fa-kit" icon.
3) Pass in your FaKit name as a string to our icon prop (This is the name that you designated when you uploaded the icon on their site).
Pass any text, status, data, product, or category Playbook color token to the color prop to change any icon's color.
<%= pb_rails("flex", props: { margin_bottom: "sm" }) do %> <%= pb_rails("icon", props: { icon: "user", fixed_width: true, color: "primary", size: "2x" }) %> <%= pb_rails("icon", props: { icon: "recycle", fixed_width: true, color: "data_4", size: "2x" }) %> <%= pb_rails("icon", props: { icon: "roofing", fixed_width: true, color: "product_5_background", size: "2x" }) %> <% end %> <%= pb_rails("flex", props: {}) do %> <%= pb_rails("icon", props: { icon: "user", fixed_width: true, color: "light", size: "2x" }) %> <%= pb_rails("icon", props: { icon: "recycle", fixed_width: true, color: "lighter", size: "2x" }) %> <%= pb_rails("icon", props: { icon: "roofing", fixed_width: true, color: "link", size: "2x" }) %> <% end %>
<%= pb_rails("icon_circle", props: { icon: "rocket", size: "xxs" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", size: "xs" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", size: "md" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", size: "lg" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", size: "xl" }) %>
Customize your icon circle by passing one of our seven base colors to the variant prop: royal orange purple teal red yellow green
<%= pb_rails("icon_circle", props: { icon: "rocket", variant: "royal", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", variant: "orange", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", variant: "purple", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", variant: "teal", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", variant: "red", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", variant: "yellow", size: "sm" }) %> <br /> <%= pb_rails("icon_circle", props: { icon: "rocket", variant: "green", size: "sm" }) %>
The Icon Circle also allows you to pass in an HTML emoji in place of an icon if needed. To do so, pass any emoji or its hexa/decimal ref (see here) as a string to the icon prop as shown in the code snippet below.
<%= pb_rails("icon_stat_value", props: { icon: "car", size: "sm", text: "distance driven", unit: " mi", value: 158.3 }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "car", size: "md", text: "distance driven", unit: " mi", value: 158.3 }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "car", size: "lg", text: "distance driven", unit: " mi", value: 158.3 }) %>
<%= pb_rails("icon_stat_value", props: { icon: "globe-europe", text: "Mercury", unit: "AU", value: 0.39, variant:"royal" }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "planet-ringed", text: "Venus", unit: "AU", value: 0.723, variant:"purple" }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "planet-moon", text: "Earth", unit: "AU", value: 1.0, variant:"teal" }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "solar-system", text: "Mars", unit: "AU", value: 1.524, variant:"red" }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "globe-americas", text: "Jupiter", unit: "AU", value: 5.203, variant:"yellow" }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "globe-africa", text: "Saturn", unit: "AU", value: 9.539, variant:"green" }) %> <br> <%= pb_rails("icon_stat_value", props: { icon: "globe", text: "Uranus", unit: "AU", value: 19.18, variant:"orange" }) %>
Use these to represent what affiliation an employee has.
<br/> <%= pb_rails("image", props: { alt: "picture of a misty forest", size: "xs", url: "https://unsplash.it/500/400/?image=634" }) %> <br/> <%= pb_rails("image", props: { alt: "picture of a misty forest", size: "sm", url: "https://unsplash.it/500/400/?image=634" }) %> <br/> <%= pb_rails("image", props: { alt: "picture of a misty forest", size: "md", url: "https://unsplash.it/500/400/?image=634" }) %> <br/> <%= pb_rails("image", props: { alt: "picture of a misty forest", size: "lg", url: "https://unsplash.it/500/400/?image=634" }) %> <br/> <%= pb_rails("image", props: { alt: "picture of a misty forest", size: "xl", url: "https://unsplash.it/500/400/?image=634" }) %> <br/> <%= pb_rails("image", props: { alt: "picture of a misty forest", url: "https://unsplash.it/500/400/?image=634" }) %>
<%= pb_rails("image", props: { alt: "", rounded: true, size: "xs", url: "https://unsplash.it/500/400/?image=634" }) %> <br> <%= pb_rails("image", props: { alt: "", rounded: true, size: "sm", url: "https://unsplash.it/500/400/?image=634" }) %> <br> <%= pb_rails("image", props: { alt: "", rounded: true, size: "md", url: "https://unsplash.it/500/400/?image=634" }) %> <br> <%= pb_rails("image", props: { alt: "", rounded: true, size: "lg", url: "https://unsplash.it/500/400/?image=634" }) %> <br> <%= pb_rails("image", props: { alt: "", rounded: true, size: "xl", url: "https://unsplash.it/500/400/?image=634" }) %>
<style> .image-error:before { content: "Sorry, the image below seems to be broken."; display: block; margin-bottom: 10px; } .image-error { margin: 5px; padding: 5px; outline: 1px solid red; } </style> <%= pb_rails("body", props: { text: "Handle when an image fails to load or a broken link is passed. This is not neccessary most of the time." } ) %> <br> <br> <%= pb_rails("body", props: { text: "Alter the display when the image fails to load:" } ) %> <%= pb_rails("image", props: { alt: "This is the alt text!", on_error: "this.style.color = 'red'", rounded: true, size: "xs", url: "not_a_picture" } ) %> <br> <br> <%= pb_rails("body", props: { text: "Give it an error class:" } ) %> <%= pb_rails("image", props: { alt: "This is the alt text!", on_error: "this.classList.add('image-error')", padding_x: "none", rounded: true, size: "xs", url: "not_a_picture" } ) %> <br> <br> <%= pb_rails("body", props: { text: "Or hide it completely:" } ) %> <%= pb_rails("image", props: { alt: "This is the alt text!", on_error: "this.style.display = 'none'", rounded: true, size: "xs", url: "not_a_picture", } ) %>
To add a transition, simply use the transition prop and one of the three string options "fade", "blur", or "scale".
<%= pb_rails("flex") do %> <%= pb_rails("flex/flex_item", props: {fixed_size: "250px"}) do %> <%= pb_rails("select", props: { id: "transition-dropdown", label: "", blank_selection: "Select a Transition...", options: [ { value: 'fade', }, { value: 'blur', }, { value: 'scale', }, ] }) %> <% end %> <%= pb_rails("flex/flex_item") do %> <%= pb_rails("button", props: {classname: "button", text: "Load Image", margin_left: "sm", margin_top: "xs", disabled: true }) %> <% end %> <% end %> <%= pb_rails("image", props: { classname: "transition-image", alt: "picture of a misty forest", url: "", on_error: "this.style.display = 'none'" }) %> <script> window.addEventListener('DOMContentLoaded', () => { const button = document.querySelector(".button") const transitionDropdown = document.querySelector("#transition-dropdown") var option = '' transitionDropdown.addEventListener('change', function() { if (this.value === '') { button.className = button.className + ' _disabled' } else { button.removeAttribute("disabled"); button.className = button.className.replace(/\_disabled/gi, '') option = this.value } }); const updateTransition = (transition) => { const imageTransition = document.querySelector('.transition-image') imageTransition.removeAttribute("style") imageTransition.classList.remove("fade", "blur", "scale", "lazyloaded") imageTransition.classList.add(transition, "lazyload") imageTransition.src = "https://unsplash.it/500/400/?image=634" } button.addEventListener('click', function() { updateTransition(option) }) }); </script>
<%= pb_rails("star_rating", props: { padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 0.9, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 1.5, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 4.2, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 5, padding_bottom: "xs" }) %>
<%= pb_rails("star_rating", props: { rating: 3, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 2.8, layout_option: "number", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, layout_option: "number", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 1, layout_option: "onestar", padding_bottom: "xs" }) %>
<%= pb_rails("star_rating", props: { rating: 3, denominator: 3, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, denominator: 4, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, denominator: 6, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, denominator: 7, padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, denominator: 8, padding_bottom: "xs" }) %>
<%= pb_rails("star_rating", props: { rating: 3, size: "xs", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, size: "sm", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, size: "md", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, size: "lg", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, size: "lg", layout_option: "number", padding_bottom: "xs" }) %> <%= pb_rails("star_rating", props: { rating: 3, size: "lg", layout_option: "onestar", padding_bottom: "xs" }) %>