0.2.11 • Published 6 months ago

mercury-design v0.2.11

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

A minimalistic Design System

This is a design system with focus on minimalism. The design system is open source and will be used for internal projects.

Installation

To install simply run.

npm i mercury-design

Quick start

This is an example of how to use the different components in the design system.

import react, { useState } from 'react'

import { Button, Input } from 'mercury-design'

function Form {

    const[message, setMessage] = useState('')

    return (
        <Input 
            placeholder="Enter message"
            value={message}
            onChange={e => {setMessage(e.target.value)}}
        />
        <Button intent="primary">Submit</Button>
    )
}

To use icons

Icons By Feather (source: https://feathericons.com)

Install package.

npm i react-feather

Import into js file.

import { Bell } from 'react-feather'

Custom styling

Coming soon!

0.2.11

6 months ago

0.2.10

9 months ago

0.2.7

9 months ago

0.2.9

9 months ago

0.2.8

9 months ago

0.2.1

1 year ago

0.2.0

1 year ago

0.2.6

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago