Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 768 Bytes

File metadata and controls

38 lines (32 loc) · 768 Bytes

Prodeko visual asset library

This package is still experimental

Usage

npm install --save-dev git+ssh://git@github.com: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>
        )
    }