Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">
  <div id="content"></div>
</div>
              
            
!

CSS

              
                body,
html {
  position: relative;
  background: #211e16;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#content {
  width: 100%;
  max-width: 500px;
}

.neon {
  width: 100%;
  height: auto;
  animation: flicker 7s linear infinite;
}

.neon svg {
  width: 100%;
  height: auto;
}

@keyframes flicker {
  from {
    opacity: 1;
  }

  4% {
    opacity: .9;
  }

  6% {
    opacity: .85;
  }

  8% {
    opacity: .95;
  }

  10% {
    opacity: .90;
  }

  11% {
    opacity: .922;
  }

  12% {
    opacity: .9;
  }

  14% {
    opacity: .95;
  }

  16% {
    opacity: .98;
  }

  17% {
    opacity: .9;
  }

  19% {
    opacity: .93;
  }

  20% {
    opacity: .99;
  }

  24% {
    opacity: 1;
  }

  26% {
    opacity: .94;
  }

  28% {
    opacity: .98;
  }

  37% {
    opacity: .93;
  }

  38% {
    opacity: .5;
  }

  39% {
    opacity: .96;
  }

  42% {
    opacity: 1;
  }

  44% {
    opacity: .97;
  }

  46% {
    opacity: .94;
  }

  56% {
    opacity: .9;
  }

  58% {
    opacity: .9;
  }

  60% {
    opacity: .99;
  }

  68% {
    opacity: 1;
  }

  70% {
    opacity: .9;
  }

  72% {
    opacity: .95;
  }

  93% {
    opacity: .93;
  }

  95% {
    opacity: .95;
  }

  97% {
    opacity: .93;
  }

  to {
    opacity: 1;
  }
}

              
            
!

JS

              
                const NeonPath = () => {};

function addIntensity(num) {
  const arr = [];
  while(num) {
    arr.push(<feMergeNode in="blurred" />);
    num--;
  }
  
  return arr;
}

class Neon extends React.PureComponent {
  render() {
    const { intensity, blur } = this.props;
    return (
      <div className="neon">
        <svg width="550" height="450" viewBox="0 0 550 450" preserveAspectRatio="xMinYMin">
          <defs>
            <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
              <feGaussianBlur in="SourceGraphic" stdDeviation={blur} result="blurred"></feGaussianBlur>
              <feMerge>
                {addIntensity(intensity)}
              </feMerge>
            </filter>
            <g id="ribbon">
              <path d="M244.1,411.4c-1.5,3-2.4,4.5-2.9,5.2c-0.4-0.3-0.8-0.6-1.3-0.9c-2.3-1.5-26.9-18.7-39.6-27.6l-0.9-0.6l-1.1,0
		c-0.4,0-41.7,1.3-51.2,1.3c-0.6,0-2,0-3.2-0.1c0.1-0.2,0.2-0.5,0.3-0.7c0.4-0.9,0.9-2,1.3-3.2c2.4-6.2,19-44.2,24.5-56.8
		c-1.8-1.4-3.5-3-5-4.7c-4.3,9.9-22.9,52.4-25.5,59.1c-0.4,1.1-0.9,2.1-1.2,2.9c-1.2,2.8-2.2,5.1-0.8,7.3c1.6,2.4,4.5,2.5,9.6,2.5
		c8.9,0,43.6-1.1,50.3-1.3c5.7,4,36.2,25.4,39,27.1c0.3,0.2,0.6,0.4,0.9,0.7c0.9,0.7,2.3,1.7,4,1.7c0.4,0,0.7,0,1.1-0.1
		c2.5-0.6,4.4-2.9,7.5-9.2c4.5-9.2,20.4-42.1,24.4-50.2c-2.5-0.1-4.8-0.4-6.8-0.7C262.3,373.9,248.2,402.9,244.1,411.4z"/>
	<path d="M488.2,167.9h-45.3c-1-3.4-3.3-9.2-7.6-12.9c0.9-6.8,2.1-28.2-14.9-36.9c-1.1-6.3-5.8-26.8-23-32.6
		c-1.7-6.2-8.6-24.6-29.6-26.7c-1.4-2.3-4.6-6.7-9.1-10.7c-8.2-7.2-17.5-9.8-26.9-7.5c-2-1.8-5.8-5.1-11-7.8
		c-9.5-4.9-19.1-5.4-27.8-1.4c-5.5-3.1-23.7-11.4-40,0.9c-2.6-0.8-7.7-2.1-13.6-2.1c-10.8-0.1-19.5,4.1-25.2,12
		c-6.5,0-27.7,1.4-34.5,18.7c-6.2,2-27.2,10.1-29.4,27.2c-2.4,1.2-6.9,3.8-11.2,7.9c-8,7.5-11.9,16.5-11.3,26.3
		c-4.4,4.3-18.8,20.3-13.7,36.9l-4,8.8H54.3v102.7h71c1.4,1.6,4.1,4.2,6.9,5.9c0.9,6.1,5.3,25.3,23.3,32.1c1.2,2.8,4.4,9.2,9.6,14.9
		c1.5,1.7,3.2,3.2,5,4.7c4.4,3.4,9.7,5.8,16.1,5.8c3.7,5.1,16.8,20.6,36.6,17.4c4.1,3.8,17.1,13.9,36.4,9.4c1.5,0.6,4.5,1.7,8.3,2.5
		c2,0.4,4.3,0.7,6.8,0.7c0.4,0,0.7,0,1.1,0c0.4,0,0.8,0,1.1,0c8.7,18,24.2,50,25.8,54c0.9,2.2,2.1,5.2,5,6c0.4,0.1,0.9,0.2,1.3,0.2
		c2.6,0,5.3-2,8.9-4.8c3.7-3,12.3-9.2,19.8-14.7c9.1-6.6,12.6-9.1,13.4-10c0.5-0.5,2.3-1.2,5.9-0.7c4.2,0.6,37.7,1.4,45,1.4
		c0.8,0,1.5,0,2.2,0c3.8,0.1,7.1,0.1,8.8-2.6c1.8-2.8,0.4-6.5-2.8-12.8c-5.2-10.2-21.8-45.5-26.5-55.5c6.2-4,12.3-10.2,14.6-19.7
		c3.4-1.6,11.1-5.9,16.8-13.6c7.5-10.3,6.2-19.5,6.1-19.9l0-0.3l0-0.1c3.1-0.1,19.6,0.1,34.3,0.2c19.4,0.2,32.2,0.3,34,0.2
		c7.5-0.4,7.5-7.3,7.5-10.2v-84.5C496.6,169.2,493.8,167.9,488.2,167.9z M404.1,382.9c1.7,3.3,2.4,5.1,2.7,6.1c-0.8,0-1.9,0-2.9,0
		c-0.7,0-1.5,0-2.3,0c-8.9,0-40.8-0.8-44.1-1.3c-5-0.7-9,0.2-11.3,2.5c-0.8,0.8-7.1,5.3-12.7,9.4c-7.7,5.5-16.3,11.8-20.1,14.9
		c-2.4,1.9-3.7,2.8-4.4,3.2c-0.2-0.4-0.5-0.9-0.8-1.9c-1.8-4.6-19.1-40.3-25-52.4c3.5-0.8,7.2-2.1,10.9-4.3c5.6,1.4,25.9,5,38.8-9.5
		c6,0.6,23.8,0.5,35.1-18.5c2-0.5,5.6-1.5,9.7-3.3C382.6,338.1,398.9,372.7,404.1,382.9z M490.2,261c0,2.9-0.4,3.5-0.4,3.6
		c0,0-0.2,0.1-1,0.2c-1.8,0.1-18.7-0.1-33.6-0.2c-16.8-0.1-32.7-0.3-34.9-0.2c-3,0.1-4.5,1.5-5.2,2.6c-1.3,2.1-0.9,4.3-0.5,5.4
		c0.1,1.3,0.3,7.7-5,14.9c-6.1,8.4-15.5,12.1-15.6,12.1l-1.7,0.6l-0.3,1.8c-3.5,18.8-26.3,23-26.5,23l-1.5,0.3l-0.8,1.4
		c-11.2,20.1-30.1,16.5-30.9,16.3l-2-0.4L329,344c-11.9,15-34.3,8.5-34.5,8.4l-1.4-0.4l-1.3,0.8c-4.5,3-9.2,4.3-13.4,4.7
		c-0.2,0-0.3,0-0.5,0c-9.3,0.8-16.7-2.7-17.1-3l-1.1-0.5l-1.2,0.3c-19.7,5.1-31.9-8-32.4-8.5l-1.3-1.4l-1.8,0.4
		c-8.2,1.8-16.1-0.3-23.5-6c-5.8-4.5-9.1-9.7-9.1-9.7l-1-1.6l-1.9,0.1c-17.2,1.2-26.6-22.4-26.7-22.6l-0.5-1.4l-1.5-0.5
		c-18.3-6-20.5-28.7-20.5-28.9l-0.2-2l-1.9-0.7c-2.2-0.8-5.5-4.1-7.1-6l-1-1.2H60.7v-89.9h53.6l6.8-14.9l-0.4-1.2
		c-5.6-15.4,12.6-32.1,12.7-32.3l1.2-1.1l-0.2-1.6c-2.2-20,19.3-29.6,20.3-30l1.9-0.8l0.1-2c0.6-16.4,26.2-23.6,26.5-23.7l1.7-0.5
		l0.5-1.7c5.4-17,30.1-15.9,30.4-15.8l1.9,0.1l1-1.6c10.8-16.8,33-8.6,33.9-8.2l1.8,0.7l1.5-1.2c16-13.4,34.5-1.2,35.3-0.7l1.6,1.1
		l1.7-0.9c17.4-9.2,33.4,7.7,34.1,8.5l1.4,1.5l1.9-0.6c19-5.8,30.8,15.3,31.3,16.2L364,65l1.8,0.1c21.4,1.1,25.6,22.6,25.8,23.5
		l0.4,2l2,0.5c17.3,4.6,20.3,29.2,20.4,29.5l0.2,1.8l1.7,0.7c7,3.1,11.3,9.3,12.6,18.6c1.1,7.4-0.2,13.9-0.2,14l-0.4,2.2l1.9,1.2
		c4.2,2.6,6.6,10,7.2,12.6l0.5,2.5h50.4c1,0,1.6,0,1.9,0.1c0.1,0.6,0.1,1.5,0.1,2V261z"/>
            </g>
            <g id="circle">
              <path d="M278,334.3c-25.2,0-47-6.8-60.7-12.5c-33-13.6-55.3-45.4-56.2-46.8c-1-1.5-0.6-3.5,0.8-4.5c1.5-1,3.5-0.6,4.5,0.8
                c0.2,0.3,22.2,31.6,53.4,44.5c22.4,9.2,66.7,21.6,111.8,0.1c38.5-18.4,56.4-49.4,56.6-49.7c0.9-1.5,2.8-2.1,4.4-1.2
                c1.5,0.9,2.1,2.8,1.2,4.4c-0.8,1.3-19,33.1-59.4,52.3C314.9,331,295.6,334.3,278,334.3z"/>
              <path d="M141.7,173.9C141.7,173.9,141.7,173.9,141.7,173.9c-1.8,0-3.3-1.5-3.2-3.3c0-0.7,0.5-18.3,15.2-43.2
                c14.7-24.7,26.9-33.9,27.4-34.2c1.4-1.1,3.5-0.7,4.5,0.7c1.1,1.4,0.7,3.5-0.7,4.5c-0.1,0.1-11.8,8.9-25.7,32.3
                c-13.9,23.4-14.3,39.9-14.3,40C144.9,172.5,143.5,173.9,141.7,173.9z"/>
              <path d="M361.9,92.8c-0.9,0-1.8-0.4-2.4-1.1c-0.2-0.2-20.6-22.3-64.3-28c-22.8-3-38.7-1-48,1.1c-10,2.3-14.8,5.3-14.8,5.4
                c-1.5,1-3.5,0.6-4.5-0.9c-1-1.5-0.6-3.5,0.9-4.5c0.8-0.6,20.9-13.5,67.2-7.5c46.3,6,67.4,29.1,68.3,30c1.2,1.3,1.1,3.4-0.3,4.5
                C363.4,92.5,362.7,92.8,361.9,92.8z"/>
              <path d="M410.2,176.3c-1.5,0-2.9-1.1-3.2-2.6c-6.7-36.3-20.3-52-20.4-52.1c-1.2-1.3-1.1-3.4,0.3-4.5c1.3-1.2,3.4-1.1,4.5,0.2
                c0.6,0.7,14.9,17,22,55.3c0.3,1.7-0.8,3.4-2.6,3.8C410.6,176.3,410.4,176.3,410.2,176.3z"/>
            </g>
            <g id="red-ribbon">
              <path d="M455.9,416.2c-2.2,0-4.2-1.2-5.3-1.9c-2.3-1.4-26.3-17.3-27.3-18c-1.5-1-1.9-3-0.9-4.5c1-1.5,3-1.9,4.5-0.9
                c8.6,5.7,25.3,16.7,27.1,17.8c0.6,0.3,1.5,0.9,1.8,1c0,0,0.4-0.3,1.1-1.3c0.5-0.7,57-88.2,61.5-94.8c-2.2-1.4-53.3-35.1-55.5-36.5
                c-1.5-1-1.9-3-0.9-4.5c1-1.5,3-1.9,4.5-0.9c0.5,0.4,53.5,35.3,55.4,36.5c2.2,1.4,2.9,3.1,3.1,4.3c0.3,1.6-0.1,3.2-1.2,4.7
                c-1.4,2-58.3,89.6-61.4,94.6C460.2,415.1,457.9,416.2,455.9,416.2z"/>
              <path d="M74.6,167.2c-0.6,0-1.3-0.2-1.8-0.6c-16.9-11.7-42.7-29.6-44.4-30.6c-0.7-0.4-2.9-1.7-3.3-4.2c-0.4-2.4,1-4.6,2.5-6.3
                c1.6-2,23.6-35.8,39.7-60.4c13.5-20.7,20.5-31.5,21.2-32.4c4.3-5.8,8.9-3.5,10.6-2.3c2.6,1.8,55.2,36.7,55.8,37
                c1.5,1,1.9,3,0.9,4.5c-1,1.5-3,1.9-4.5,0.9c-2.2-1.4-53.2-35.2-55.9-37.1c-0.4-0.3-0.6-0.3-0.6-0.3c0,0-0.4,0.2-1.2,1.2
                c-0.7,1-10.6,16.1-21,32.1c-22.5,34.6-38.6,59.2-40.1,61c-0.4,0.4-0.6,0.8-0.8,1c2.8,1.8,40.4,27.8,44.7,30.8c1.5,1,1.8,3,0.8,4.5
                C76.6,166.7,75.6,167.2,74.6,167.2z"/>
            </g>
            <g id="pabst">
              <path d="M187.4,167.2c-0.3,0-0.7-0.1-1-0.2c-1.7-0.6-2.6-2.4-2-4.1l25.2-74.4c0.6-1.7,2.4-2.6,4.1-2c1.7,0.6,2.6,2.4,2,4.1
                L190.4,165C190,166.3,188.7,167.2,187.4,167.2z"/>
              <path d="M224.5,121.3c-2.7,0-5.3-0.3-7.8-0.9c-1.7-0.4-2.8-2.2-2.3-3.9c0.4-1.7,2.2-2.8,3.9-2.3c7.9,2,17.3,0,24-5.2
                c3.7-2.9,5.8-6.3,5.8-9.4c0-3.7-0.9-8.9-5.1-13.1c-4.6-4.6-12.1-6.8-22.2-6.7c-22.4,0.3-39.2,11.2-39.3,11.3
                c-1.5,1-3.5,0.6-4.5-0.9c-1-1.5-0.6-3.5,0.9-4.5c0.7-0.5,18.5-12.1,42.8-12.3c11.9-0.1,20.9,2.8,26.8,8.6
                c5.8,5.8,7.1,12.8,7.1,17.7c0,5.2-3,10.3-8.3,14.5C240.1,118.7,232.2,121.3,224.5,121.3z"/>
              <path d="M233.5,168.7c-3.5,0-6.8-1.2-9.5-3.6c-6-5.4-6.6-15.1-1.6-24.7c8.2-15.6,23.9-16,31.1-14c1.7,0.5,2.7,2.3,2.2,4
                c-0.5,1.7-2.2,2.7-4,2.2c-0.7-0.2-15.9-4.1-23.7,10.7c-4.4,8.4-2.6,14.4,0.2,16.9c3,2.7,7.6,2.6,12.1-0.4c1.5-1,3.5-0.6,4.5,0.9
                c1,1.5,0.6,3.5-0.9,4.5C240.5,167.5,236.9,168.7,233.5,168.7z"/>
              <path d="M256.4,170.4c-2.1,0-5.2-0.8-7.8-4.7c-3.1-4.5-2.5-11.8,1.8-21.7c3-6.8,6.6-12.4,6.8-12.6c1-1.5,3-1.9,4.5-0.9
                c1.5,1,1.9,3,0.9,4.5c-5.5,8.5-11.9,22.5-8.6,27.2c0.9,1.2,1.7,1.9,2.5,1.9c0,0,0,0,0,0c1.8,0,4.4-2.6,5.6-4.3c1-1.5,3-1.8,4.5-0.8
                c1.5,1,1.8,3,0.8,4.5C266.9,164.1,262.4,170.4,256.4,170.4C256.4,170.4,256.4,170.4,256.4,170.4z"/>
              <path d="M283.7,168.7c-0.3,0-0.7,0-1,0c-3.9-0.3-7.4-2.6-9.7-6.1c-3.2-5-3.5-11.9-0.8-19.1c4.3-11.7,18.2-46,18.8-47.5
                c0.7-1.6,2.6-2.4,4.2-1.8c1.6,0.7,2.4,2.6,1.8,4.2c-0.1,0.4-14.5,35.6-18.8,47.2c-1.9,5.3-1.8,10.2,0.2,13.4
                c1.2,1.8,2.9,2.9,4.8,3.1c5,0.4,15.8-6.9,17.5-18.1c1.1-7.4,0.3-9.9-0.6-10.8c-1.1-1.1-4-0.9-6.2-0.6c-1.8,0.3-3.4-0.9-3.7-2.7
                c-0.3-1.8,0.9-3.4,2.7-3.7c3.5-0.6,8.4-0.9,11.7,2.3c3,3,3.7,7.9,2.5,16.4C305.1,158.3,292.9,168.7,283.7,168.7z"/>
              <path d="M333.5,130.7c0.7-1,1.2-1.5,1.5-1.8c0.2-0.1,0.5-0.2,0.7-0.3c1.6-0.9,2.1-2.8,1.2-4.4c-0.6-1-1.7-1.7-2.9-1.7
                c-2.2-0.1-4,1.7-7.6,7.1c-3.5,5.3-12,7-12.1,7c-1.7,0.3-2.9,2-2.6,3.7c0.3,1.6,1.6,2.7,3.2,2.7c0.2,0,0.4,0,0.6-0.1
                c0.4-0.1,8.3-1.5,13.7-6.7c1.6,3.4,3.2,9.1,3.2,14.5c0,5.8-3.3,12.1-8.7,12.1c-5.7,0-10.7-3.6-10.8-3.7c-1.4-1.1-3.4-0.8-4.5,0.7
                c-1.1,1.4-0.8,3.4,0.7,4.5c0.3,0.2,6.7,4.9,14.7,4.9c8.5,0,15.1-8.2,15.1-18.6C338.9,143.5,336.5,135.2,333.5,130.7z"/>
              <path d="M378.8,111.5h-12.6c2.5-6.8,4.3-11.8,4.5-12.4c0.6-1.7-0.3-3.5-1.9-4.1c-1.7-0.6-3.5,0.3-4.1,1.9
                c-0.1,0.2-2.3,6.4-5.3,14.6h-10.1c-1.8,0-3.2,1.4-3.2,3.2c0,1.8,1.4,3.2,3.2,3.2h7.7c-4.6,12.6-10,27.1-12,31.9
                c-2.5,6.1-2,12.2,1.2,15.9c1.9,2.2,4.6,3.3,7.6,3.3c1.1,0,2.2-0.2,3.4-0.5c8.5-2.3,19.1-13.2,20.3-14.4c1.2-1.3,1.2-3.3-0.1-4.6
                c-1.3-1.2-3.3-1.2-4.6,0.1c-2.9,3-11.5,11.1-17.3,12.7c-1.4,0.4-3.3,0.5-4.5-0.9c-1.6-1.8-1.6-5.4-0.1-9.2
                c2.1-5.2,8.1-21.2,12.9-34.3h14.9c1.8,0,3.2-1.4,3.2-3.2C382,112.9,380.6,111.5,378.8,111.5z"/>
            </g>
            <g id="blue-ribbon">
              <path d="M91.3,220.1c-1.8,0-3.2-1.4-3.2-3.2c0-1.8,1.4-3.2,3.2-3.2c8,0,16.5-3.4,16.5-10.7c0-7-6.8-11.4-11.4-11.4H71.5
                c-1.8,0-3.2-1.4-3.2-3.2c0-1.8,1.4-3.2,3.2-3.2h24.8c8.4,0,17.9,7.6,17.9,17.9C114.2,213,104.8,220.1,91.3,220.1z"/>
              <path d="M90.1,251.7c-6.4,0-14.2-0.1-18.7-0.2c-1.8,0-3.2-1.5-3.2-3.3c0-1.8,1.5-3.2,3.3-3.2c11.8,0.3,25.1,0.3,26.8,0.1
                c0,0,6.7-2,6.7-9.7c0-6.8-3.8-9.8-3.9-9.9c-1.4-1.1-1.7-3.1-0.7-4.5c1-1.4,3-1.7,4.5-0.7c0.3,0.2,6.6,4.8,6.6,15.1
                c0,9.8-7.2,15-11.8,16C98.7,251.6,94.8,251.7,90.1,251.7z"/>
              <path d="M79.6,240.7c-1.8,0-3.2-1.4-3.2-3.2v-38c0-1.8,1.4-3.2,3.2-3.2c1.8,0,3.2,1.4,3.2,3.2v38C82.8,239.3,81.4,240.7,79.6,240.7
                z"/>
              <path d="M125.2,244.2c-1.8,0-3.2-1.4-3.2-3.2v-45.1c0-4.3-2.2-5.2-2.7-5.4c0,0-3.1-1.3-2.5-3.9c0.7-2.5,3.2-2.5,4.2-2.3
                c1,0.2,7.3,2.1,7.3,11.6V241C128.4,242.8,127,244.2,125.2,244.2z"/>
              <path d="M133.8,251.7h-16c-1.8,0-3.2-1.4-3.2-3.2s1.4-3.2,3.2-3.2h16c1.8,0,3.2,1.4,3.2,3.2S135.6,251.7,133.8,251.7z"/>
              <path d="M159.2,251.6c-2.8,0-5.6-0.7-8.2-2.1c-4.7-2.4-7.7-6.4-7.7-10.2l0-20.9l0-0.1c0-0.1,0-2.5-2-4.2c-1.5-1.3-3.8-0.2-3.8-0.2
                c-1.6,0.8-3.5,0.2-4.3-1.4c-0.8-1.6-0.2-3.5,1.4-4.3c2.3-1.2,7.1-2.3,11,1.1c4.1,3.6,4.2,8.4,4.2,9.2l0,20.8c0,1,1.5,3,4.2,4.5
                c1.8,0.9,6.4,2.7,11.1-0.5c1.5-1,3.5-0.7,4.5,0.8c1,1.5,0.7,3.5-0.8,4.5C165.9,250.6,162.6,251.6,159.2,251.6z"/>
              <path d="M181.8,251.9c-2.9,0-5.7-1-8-2.8c-2.4-1.9-3.7-4.4-3.7-6.9v-25.4c0-1.2-0.3-2.1-0.8-2.5c-0.4-0.3-1.1-0.3-1.5-0.2
                c-3,0.8-4.1,0.7-4.8,0.5c-1.7-0.4-2.8-2.2-2.3-3.9c0.4-1.5,1.8-2.5,3.3-2.4c0.2,0,0.8-0.1,2.2-0.4c2.5-0.6,5.1-0.1,7,1.4
                c1.5,1.2,3.3,3.4,3.3,7.6v25.4c0,0.4,0.4,1.2,1.3,1.9c1.2,0.9,3.1,1.7,5.3,1.3c1.7-0.4,3.5,0.7,3.9,2.4c0.4,1.7-0.7,3.5-2.4,3.9
                C183.6,251.8,182.7,251.9,181.8,251.9z M164.5,208.3C164.5,208.3,164.5,208.3,164.5,208.3C164.5,208.3,164.5,208.3,164.5,208.3z
                 M164.5,208.3C164.5,208.3,164.5,208.3,164.5,208.3C164.5,208.3,164.5,208.3,164.5,208.3z M164.5,208.3
                C164.5,208.3,164.5,208.3,164.5,208.3C164.5,208.3,164.5,208.3,164.5,208.3z M164.5,208.3C164.5,208.3,164.5,208.3,164.5,208.3
                C164.5,208.3,164.5,208.3,164.5,208.3z"/>
              <path d="M207,252.6c-3.2,0-6.1-0.9-8.5-2.1c-4.7-2.5-10.2-9.3-11.3-16.3c-1.1-6.8,1.7-16.7,6.1-22c4.9-5.9,14.4-6.6,22.5-1.9
                c2.9,1.7,6.9,4.5,7.6,8.9c0.5,3.1-0.7,6.2-3.7,9.6c-6,6.8-17.1,5.6-17.6,5.5c-1.8-0.2-3-1.8-2.8-3.6c0.2-1.8,1.8-3,3.6-2.8
                c2.3,0.3,8.8,0.2,12-3.4c1.1-1.3,2.4-3.1,2.2-4.3c-0.1-0.8-1-2.3-4.5-4.3c-5.3-3.1-11.5-2.9-14.3,0.4c-3.2,3.8-5.4,11.9-4.7,16.8
                c0.8,5.1,5.2,10.1,8,11.6c2.3,1.2,8.2,3.4,14.2-2.6c1.2-1.3,3.3-1.3,4.6,0c1.3,1.2,1.3,3.3,0,4.6C216,250.9,211.3,252.6,207,252.6z
                "/>
              <path d="M244.3,243.3c-1.8,0-3.2-1.4-3.2-3.2v-40c0-1.8,1.4-3.2,3.2-3.2s3.2,1.4,3.2,3.2v40C247.5,241.8,246.1,243.3,244.3,243.3z"
                />
              <path d="M280.5,248.2c-0.3-1.8-1.9-3-3.6-2.7c0,0-1.4,0.1-2.3-0.7c-1-0.8-1.2-2.6-1.2-3.9c0-1.1,0-2.2,0-3.3
                c0-8.5,0.1-15.2-2.8-18.6c-0.8-1-1.8-1.8-2.8-2.6c6.2-3,9.8-8.4,9.8-15.3c0-5.2-2.5-9.7-7-12.7c-3.9-2.6-8.4-3.5-11.2-3.5h-20.1
                c-1.8,0-3.2,1.4-3.2,3.2c0,1.8,1.4,3.2,3.2,3.2h20.1c3.2,0,11.8,2.3,11.8,9.8c0,10.7-12.4,11.5-16.2,11.5c-1.8,0-3.2,1.4-3.2,3.2
                s1.4,3.2,3.2,3.2c0.3,0,0.5,0,0.8,0c0.5,0.3,1,0.4,1.6,0.4c3.2,0,6.6,1.5,8.5,3.7c1.3,1.5,1.3,8.9,1.3,14.3c0,1.1,0,2.2,0,3.3
                c0,3.8,1.1,6.8,3.4,8.7c2.2,1.9,4.8,2.2,6.3,2.2c0.6,0,1-0.1,1.1-0.1C279.5,251.6,280.8,250,280.5,248.2z"/>
              <path d="M249.9,251.6h-13.4c-1.8,0-3.2-1.4-3.2-3.2c0-1.8,1.4-3.2,3.2-3.2h13.4c1.8,0,3.2,1.4,3.2,3.2
                C253.1,250.2,251.6,251.6,249.9,251.6z"/>
              <path d="M293.1,203.3c-1.8,0-3.2-1.4-3.2-3.2v-8c0-1.8,1.4-3.2,3.2-3.2s3.2,1.4,3.2,3.2v8C296.3,201.8,294.9,203.3,293.1,203.3z"/>
              <path d="M295,244.2c-1.8,0-3.2-1.4-3.2-3.2v-24.6c0-1.2-0.4-1.5-0.5-1.7c-0.7-0.7-2.3-0.8-3-0.8c-1.8,0.1-3.3-1.2-3.4-3
                c-0.1-1.8,1.2-3.3,2.9-3.4c0.5,0,4.8-0.3,7.8,2.5c1.2,1.1,2.6,3.1,2.6,6.4V241C298.3,242.8,296.8,244.2,295,244.2z"/>
              <path d="M303.3,251.4h-15.2c-1.8,0-3.2-1.4-3.2-3.2c0-1.8,1.4-3.2,3.2-3.2h15.2c1.8,0,3.2,1.4,3.2,3.2
                C306.5,250,305.1,251.4,303.3,251.4z"/>
              <path d="M314.2,252c-1.8,0-3.2-1.4-3.2-3.2s1.4-3.2,3.2-3.2c2,0,3.5-0.4,4.1-1.1c0.3-0.4,0.4-0.9,0.4-0.9l0-0.3V194
                c0-2.1-4-2.6-4-2.6c-1.8-0.1-3.1-1.7-2.9-3.5c0.1-1.8,1.7-3.1,3.5-2.9c3.4,0.3,9.9,2.5,9.9,9v49.1c0,0.8,0,3.4-2.1,5.6
                C321.1,250.9,318.1,252,314.2,252z"/>
              <path d="M335.7,253.8c-5,0-7.9-3.1-8.3-3.4c-1.2-1.3-1.1-3.4,0.2-4.6c1.3-1.2,3.4-1.1,4.6,0.2c0,0,1.3,1.3,3.5,1.3
                c2.4,0,5.4-2.6,5.4-3.6V216c0-1.2-0.3-2-0.8-2.4c-1.6-1.1-5.9-0.2-8.3,0.9c-1.6,0.7-3.5-0.1-4.2-1.7c-0.7-1.6,0.1-3.5,1.7-4.2
                c1.5-0.6,9.4-3.7,14.4-0.3c1.7,1.1,3.7,3.4,3.7,7.8v27.7C347.5,249.1,340.9,253.8,335.7,253.8z"/>
              <path d="M355.9,252c-1.8,0-3.2-1.4-3.2-3.2s1.4-3.2,3.2-3.2c2,0,3.5-0.4,4.1-1.1c0.3-0.4,0.4-0.9,0.4-0.9l0-0.3V194
                c0-2.1-4-2.6-4-2.6c-1.8-0.1-3.1-1.7-2.9-3.5c0.1-1.8,1.7-3.1,3.5-2.9c3.4,0.3,9.9,2.5,9.9,9v49.1c0,0.8,0,3.4-2.1,5.6
                C362.8,250.9,359.9,252,355.9,252z"/>
              <path d="M377.4,253.8c-5,0-7.9-3.1-8.3-3.4c-1.2-1.3-1.1-3.4,0.2-4.6c1.3-1.2,3.4-1.1,4.6,0.2c0,0,1.3,1.3,3.5,1.3
                c2.4,0,5.4-2.6,5.4-3.6V216c0-1.2-0.3-2-0.8-2.4c-1.6-1-5.9-0.2-8.3,0.9c-1.6,0.7-3.5-0.1-4.2-1.7c-0.7-1.6,0.1-3.5,1.7-4.2
                c1.5-0.6,9.4-3.7,14.4-0.3c1.7,1.1,3.7,3.4,3.7,7.8v27.7C389.2,249.1,382.6,253.8,377.4,253.8z"/>
              <path d="M413,253.3c-9.9,0-17.9-10.3-17.9-23c0-12.7,8-23,17.9-23c9.9,0,17.9,10.3,17.9,23C430.9,242.9,422.9,253.3,413,253.3z
                 M413,213.7c-6.2,0-11.5,7.6-11.5,16.6c0,9,5.3,16.6,11.5,16.6c6.2,0,11.5-7.6,11.5-16.6C424.5,221.3,419.2,213.7,413,213.7z"/>
              <path d="M445.1,244.2c-1.8,0-3.2-1.4-3.2-3.2v-23c0-0.2,0-0.4,0-0.6c0-0.1,0-0.3,0-0.4c0,0-0.3-0.7-2.4-2.7c-1.2-1.2-2.3-0.7-2.9,0
                c-1.3,1.3-3.3,1.3-4.6,0c-1.3-1.3-1.3-3.3,0-4.6c2.4-2.4,7.5-4.4,12,0c3.8,3.7,4.4,5.3,4.3,7.9l0,0.4v23
                C448.4,242.8,446.9,244.2,445.1,244.2z"/>
              <path d="M478.7,252.4c-2,0-4.1-0.7-6.1-1.9c-2.7-1.8-4.2-4.4-4.2-6.9v-25c0-2.3-3-4.1-5.1-4.3c-2.1-0.2-6.6,0.7-9,1.3
                c-1.7,0.4-3.5-0.6-3.9-2.3c-0.4-1.7,0.6-3.5,2.3-3.9c0.7-0.2,7.3-1.8,11.2-1.4c5.2,0.5,10.9,4.8,10.9,10.7v25c0,0.2,0.4,1,1.6,1.7
                c1.1,0.7,2.3,0.9,3.1,0.6c1.6-0.7,3.5,0.1,4.2,1.7c0.7,1.6-0.1,3.5-1.7,4.2C481,252.1,479.9,252.4,478.7,252.4z"/>
              <path d="M452.8,251.5h-15.9c-1.8,0-3.2-1.4-3.2-3.2s1.4-3.2,3.2-3.2h15.9c1.8,0,3.2,1.4,3.2,3.2S454.6,251.5,452.8,251.5z"/>
            </g>
            <g id="beer">
              <path d="M251.8,270c-3,0-5.1-0.9-5.1,5c0,5.9,0,23.9,0,27.5s1.7,4.3,4.2,4.3c2.4,0,15.4,0,18.8,0c3.4,0,4.2-6.2,0-6.2
                c-4.2,0-16,0-16,0v-9.9c0,0,9.7,0,12.4,0s3.1-1.6,3.1-3.2c0-1.6-1.6-2.8-3.4-2.8s-11.8,0-11.8,0v-8.5c0,0,11.1,0,14.4,0
                s4.2-1.5,4.2-3.4s-1.8-2.8-4.3-2.8S251.8,270,251.8,270z"/>
              <path d="M281.6,270c-3,0-5.1-0.9-5.1,5c0,5.9,0,23.9,0,27.5s1.7,4.3,4.2,4.3c2.4,0,15.4,0,18.8,0c3.4,0,4.2-6.2,0-6.2
                c-4.2,0-16,0-16,0v-9.9c0,0,9.7,0,12.4,0s3.1-1.6,3.1-3.2c0-1.6-1.6-2.8-3.4-2.8s-11.8,0-11.8,0v-8.5c0,0,11.1,0,14.4,0
                c3.2,0,4.2-1.5,4.2-3.4s-1.8-2.8-4.3-2.8S281.6,270,281.6,270z"/>
              <path d="M331,290.8c0,0,8.1-3.1,8.1-9.4s-4.6-11.4-11.9-11.4s-17,0-17,0c-2.4,0-4.6-0.3-4.6,3.4s0,26.4,0,29.4c0,3,2.1,4,3.8,4
                c1.6,0,3.1-0.8,3.1-3.2s0-11.8,0-11.8H323c0,0,6.4,9.4,9,12.5c2.6,3.1,4.7,2.7,6.2,1.7s1.2-3.1,0-5.1S331,290.8,331,290.8z
                 M325.4,285.8c-3.4,0-13.2,0-13.2,0v-9.9c0,0,7.1,0,12.2,0s7.2,2.1,7.2,5S328.7,285.8,325.4,285.8z"/>
              <path d="M236.5,286.4c0,0,3-1.7,3-7.8c0-6-7.6-8.6-12.8-8.6s-12.7,0-12.7,0c-2.6,0-3.8-0.4-3.8,6.2c0,0,0,23.9,0,26.7
                c0,2.8,1.6,3.9,3.8,3.9s10.3,0,15.8,0s13.4-3.5,13.4-10.5S236.5,286.4,236.5,286.4z M217.3,275.9c0,0,2.7,0,7.5,0
                c4.8,0,7.5,2.4,7.5,4.1c0,1.7-3.1,4.1-7.4,4.1c-4.3,0-7.7,0-7.7,0V275.9z M228.9,300.7c-4.4,0-11.5,0-11.5,0v-10.6c0,0,5,0,9.1,0
                s9.1,2.4,9.1,5.3C235.4,298.3,233.3,300.7,228.9,300.7z"/>
            </g>
          </defs>
          <use xlinkHref="#ribbon" fill="#1660d5" />
          <use xlinkHref="#ribbon" fill="#5f92e3" filter="url(#glow)" />
          <use xlinkHref="#circle" fill="#1660d5" />
          <use xlinkHref="#circle" fill="#5f92e3" filter="url(#glow)" />
          <use xlinkHref="#red-ribbon" fill="#f44b4b" />
          <use xlinkHref="#red-ribbon" fill="#ff0000" filter="url(#glow)" />
          <use xlinkHref="#pabst" fill="#fff" />
          <use xlinkHref="#pabst" fill="#fff" filter="url(#glow)" />
          <use xlinkHref="#blue-ribbon" fill="#fff" />
          <use xlinkHref="#blue-ribbon" fill="#fff" filter="url(#glow)" />
          <use xlinkHref="#beer" fill="#fff" />
          <use xlinkHref="#beer" fill="#fff" filter="url(#glow)" />
        </svg>
      </div>
     );
  }
}

ReactDOM.render(<Neon intensity={2} blur={10} />, document.getElementById('content'));
              
            
!
999px

Console