How to use the @pluralsight/ps-design-system-icon.colors.orange function in @pluralsight/ps-design-system-icon

To help you get started, we’ve selected a few @pluralsight/ps-design-system-icon 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 pluralsight / design-system / packages / site / src / ui / change-log.js View on Github external
const ChangeLog = props => {
  const changeLogUrl = `https://github.com/pluralsight/design-system/blob/master/packages/${props.packageName}/CHANGELOG.md`
  const label = props.version ? `v${props.version}` : 'CHANGELOG'
  return (
    <div>
      
        <span>
          {label}
          <div>
            
          </div>
        </span>
      
      <style>{`
        .version {
          font-size: ${core.type.fontSizeSmall};
        }
        .text {
          display: flex;
          align-items: center;
        }
        .icon {
          display: flex;
          align-items: center;
          margin-left: ${core.layout.spacingXSmall};
        }</style></div>