Package Exports
- @a24z/logo-component
- @a24z/logo-component/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@a24z/logo-component) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Logo Component
An animated wireframe sphere logo component for React.
Installation
npm install @a24z/logo-componentUsage
import { Logo } from '@a24z/logo-component';
function App() {
return (
<Logo
width={150}
height={150}
color="currentColor"
particleColor="#00ff00"
opacity={0.9}
/>
);
}Props
width(number, default: 150): Width of the logo in pixelsheight(number, default: 150): Height of the logo in pixelscolor(string, default: "currentColor"): Color of the wireframe linesparticleColor(string, optional): Color of the animated particles (defaults tocolor)opacity(number, default: 0.9): Overall opacity of the logo
License
MIT