How to use the @crave/farmblocks-text.fontTypes.NEUTRAL 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 / map-balloon / src / styledComponents / Caption.js View on Github external
const Caption = ({ text, theme, iconClass }) => (
  
    
      <i>
    </i><i>
    
  </i><i>
);
Caption.propTypes = {</i>
github CraveFood / farmblocks / packages / table / src / Table.story.js View on Github external
};
    return (
       (
            
          )}
        /&gt;
         `${row.distance} miles from you`}
        /&gt;
        
         (
            <table>
        </table>
github CraveFood / farmblocks / packages / map-balloon / src / MapBalloon.js View on Github external
pinSize={pinSize}
              interactive={interactiveBalloon}
              onClick={
                onBalloonClick &amp;&amp; (event =&gt; onBalloonClick(value, event))
              }
              balloonSize={balloonSize}
            &gt;
              

              
                {caption}
                {interactiveBalloon ? (
                  
                ) : null}
              
github CraveFood / farmblocks / packages / empty-state / src / EmptyState.js View on Github external
align="center"
        size={fontSizes.LARGE}
        type={fontTypes.NEUTRAL}
      &gt;
        {description}
      
    )}

    

    {info &amp;&amp; (
      
    )}
  
);