@linkzy/react
TypeScript icon, indicating that this package has built-in type declarations

0.0.0-canary.5 • Public • Published
@linkzy/react
Collection of unstyled components for create your own link-in-bio

Install

Install package from your command line

With yarn

yarn add @linkzy/react -E

With npm

npm install @linkzy/react -E

Getting started

Add the component to your template. Include styles where needed.

import * as Linkzy from '@linkzy/react';

const LinksPage = () => {
  return (
    <Linkzy.Root>
      <Linkzy.Head>
        <Linkzy.Avatar>
          <img src="..." />
        </Linkzy.Avatar>
        <Linkzy.Content>
          <Linkzy.Title label="Javier Diaz" />
          <Linkzy.Bio>A software engineer who designs</Linkzy.Bio>
        </Linkzy.Content>
      </Linkzy.Head>
      <Linkzy.Group>
        <Linkzy.Link
          href="https://youtube.com/@coderdiaz"
          label="Visita mi canal de Youtube"
        />
        <Linkzy.Link
          href="https://twitch.tv/coderdiaz"
          label="Visita mi canal de Twitch"
        />
        <Linkzy.Link
          href="https://coderdiaz.dev/contacto"
          label="Ponte en contacton conmigo"
        />
      </Linkzy.Group>
    </Linkzy.Root>
  );
};

License

MIT License

Package Sidebar

Install

npm i @linkzy/react

Weekly Downloads

0

Version

0.0.0-canary.5

License

MIT

Unpacked Size

16.2 kB

Total Files

7

Last publish

Collaborators

  • coderdiaz