UNPKG

pico-design

Version:

A minimal, modern, and flexible design system for creators, designers, and developers. Built to streamline UI development with well-structured, accessible, and scalable components. Designed for React, with future support for other frameworks.

14 lines (13 loc) 295 B
import React from "react"; import { Button } from "../dist/index"; export default function Home() { return ( <> <h1>Build version</h1> <Button variant="danger">Biuld Version</Button> <br/> <br/> <Button variant="primary">Biuld Version</Button> </> ); }