Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 796 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 796 Bytes

Seabass

React Native primitive UI components inspired by Rebass.

Getting Started

import React from 'react'
import { Box, Heading, Button } from 'rebass'

export default props =>
  <Box>
    <Box py={2}>
      <Heading>Hello</Heading>
    </Box>
    <Pressable sx={{":pressed": {backgroundColor: "primary", color: "white"}}}>
        Hello World
    </Pressable>
  </Box>

Motivation

Seabass provides a minimal amount of primitive components. It's a base for a design system or a component library.

Seabass is heavily inspired by Rebass and Design System.

License

EPL-2.0, see LICENSE.md for details.