UNPKG

@devlander/styled-components-theme

Version:

Devlander's team utilizes this package during the development of their React Native projects. Its primary purpose is to facilitate code reuse by sharing types across multiple projects that uses the styled-components library.

10 lines (9 loc) 304 B
export declare enum JustifyContentEnum { center = "center", flexStart = "flex-start", flexEnd = "flex-end", spaceBetween = "space-between", spaceAround = "space-around", spaceEvenly = "space-evenly" } export type JustifyContentType = `${JustifyContentEnum}` | JustifyContentEnum;