@vue-styled-system/prop-types

5.1.10 • Public • Published

@vue-styled-system/prop-types

Add prop types to Vue components built with Styled System

npm i styled-system @vue-styled-system/prop-types
import styled from 'vue-styled-components'
import { space, color } from 'styled-system'
import propTypes from '@vue-styled-system/prop-types'

const boxProps = {
  ...propTypes.space,
  ...propTypes.color,
}

const Box = styled('div', boxProps)(space, color)

Available Type Categories

  • space
  • color
  • layout
  • typography
  • flexbox
  • border
  • background
  • position
  • grid

See props of each category in the reference table.

Custom Props

import styled from 'vue-styled-components'
import { space, system } from 'styled-system'
import propTypes, { propType } from '@vue-styled-system/prop-types'

const gridGap = system({
  gap: {
    property: 'gridGap',
    scale: 'space',
    defaultScale: [0, 4, 8, 16, 32, 64, 128, 256, 512]
  }
})

const stackProps = {
  ...propTypes.space,
  gap: propType,
}

const Stack = styled('div', stackProps)(
  compose(space, gridGap)
)

Readme

Keywords

none

Package Sidebar

Install

npm i @vue-styled-system/prop-types

Weekly Downloads

5

Version

5.1.10

License

MIT

Unpacked Size

5.7 kB

Total Files

5

Last publish

Collaborators

  • kwanpham