How to use the @crave/farmblocks-text.fontSizes.SMALL 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 / empty-state / src / EmptyState.js View on Github external
className="description"
        align="center"
        size={fontSizes.LARGE}
        type={fontTypes.NEUTRAL}
      >
        {description}
      
    )}

    

    {info && (
      
    )}
  
);
github CraveFood / farmblocks / packages / icon / src / IconsBrowser.js View on Github external
{grouped[groupName].map(({ name, size }) => {
            const Icon = icons[name];
            return (
              
                
                  
                
                
              
            );
          })}
github CraveFood / farmblocks / packages / icon / src / Icon.story.js View on Github external
export const insideText = () => (
  <>
    
    
    
  
);
export const SVGFile = () => (
github CraveFood / farmblocks / packages / table / src / Table.js View on Github external
size={fontSizes.SMALL}
            onClick={this.titleClick(columnIndex)}
          >
            {columnProps.title}
          
          
        ,
      );
    }

    if (columnProps.title) {
      return headerCell(
        ,
      );
    }

    return headerCell(null);
  };