Skip to content

Prodeko/visual-assets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prodeko visual asset library

This package is still experimental

Usage

npm install --save-dev git+ssh://[email protected]:prodeko/visual-assets#semver:latest
// import the logo
import { logos } from "@prodeko/visual-assets"

// select the logo you want using #

function Logo() {
    return (
        <svg className="w-64 h-64 text-white">
          <use href={`${logos}#logo`} />
        </svg>
    )
}
function LogoWithText() {
    return (
        <svg className="w-64 h-64 text-white">
          <use href={`${logos}#logo-text`} />
        </svg>
        )
    }
function ProdekoBlueLogo() {
    return (
        <svg className="w-64 h-64 text-[#002e7d]">
          <use href={`${logos}#logo-text`} />
        </svg>
        )
    }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published