1.8.1 • Published 9 months ago

salekin-design-system v1.8.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Salekin's Design System

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Installation

To install the design system, run:

npm install salekin-design-system

Usage

Button

import React from 'react';
import { Button } from 'salekin-design-system';

const App = () => (
  <Button variant="outlined">Click Me</Button>
);

export default App;

Input

import React from 'react';
import { Input } from 'salekin-design-system';

const App = () => (
  <Input type="text" placeholder="Enter text" variant="filled" />
);

export default App;

Card

import React from 'react';
import { Card, Button } from 'salekin-design-system';

const App = () => (
  <Card body="Card Body" footerItems={[<Button key="1">Footer Button</Button>]} />
);

export default App;
1.8.1

9 months ago

1.8.0

9 months ago

1.7.3

9 months ago

1.7.1

9 months ago

1.7.0

9 months ago

1.5.0

9 months ago

1.4.0

9 months ago

1.3.0

9 months ago

1.2.0

9 months ago

1.1.0

9 months ago

1.0.0

9 months ago