Shopify / restyle

A type-enforced system for building UI components in React Native with TypeScript.

Home Page:https://shopify.github.io/restyle/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support breakpoints into default props like: colors, borderRadii, spacing

VictorPulzz opened this issue · comments

Hey there, you lib is really great!
I would like to ask to implement the possibility breakpoints in default props.
Example:

export const theme = createTheme({
  breakpoints: {
    phone: 0,
    tablet: 768,
  },
  spacing: {
     xxl: {
         phone: 12,
         tablet: 20
     }
  }
});