How to use the @crave/farmblocks-text.fontSizes.LARGE function in @crave/farmblocks-text

To help you get started, we’ve selected a few @crave/farmblocks-text examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github CraveFood / farmblocks / packages / table / src / SelectionBar.js View on Github external
const SelectionBar = props => {
  const {
    className,
    selectedRows,
    clearSelection,
    height,
    title,
    children,
  } = props;
  const clearButtonClick = clearFn => () => clearFn();

  return (
    
      <div>
        
      </div>
      <div>
        {clearSelection &amp;&amp; (
          <button>
            {props.clearButtonLabel}
          </button>
        )}
      </div>
      {children &amp;&amp; <div>{children}</div>}
    
  );
};