Skip to content
/ kit Public

The technical implementation of Tabetalt Designsystem, based on Theme UI.

Notifications You must be signed in to change notification settings

tabetalt/kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1b62b2c · Aug 18, 2021
Oct 23, 2020
Jul 11, 2020
Jul 11, 2020
Sep 16, 2020
May 7, 2021
Jul 11, 2020
May 7, 2021
Jul 10, 2020
Oct 15, 2020
Jul 10, 2020
Jul 10, 2020
Aug 18, 2021
Oct 24, 2020
Aug 18, 2021
Aug 18, 2021
Nov 13, 2020

Repository files navigation

Tabetalt Kit

Build & Deploy Total alerts LGTM Grade Maintainability npm bundle size

About

Tabetalt Kit is the technical implementation of Tabetalt Designsystem. It is based on Theme UI and features theme and a collection of components for use in Tabetalt applications.

Our intentions are to stylize according to Tabetalt Designsystem on all Theme UI components.

Quickstart

All components are included in one package. Install it as such:

▶ yarn add @tabetalt/kit

Install necessary peer dependencies.

▶ yarn add theme-ui@next

Remember to include Google Fonts No fonts are packaged with the library. Therefore, you'll need to add a Link to it, as such:

<link
  href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
  rel="stylesheet"
/>

Example

You'll have to register the ThemeProvider in order to make the theme work.

import { ThemeProvider, Styled } from 'theme-ui';
import { theme } from '@tabetalt/kit';

const App = () => (
  <ThemeProvider theme={theme}>
    <Styled.h1>Hello world!</Styled.h1>
  </ThemeProvider>
);

Documentation

Apart from this README, you can find details and examples of using the SDK in the following places: