1.1.1 • Published 9 years ago

arrow-style v1.1.1

Weekly downloads
1,367
License
MIT
Repository
github
Last release
9 years ago

arrow-style

A simple function generating the styles needed for a DOM arrow

Install

$ npm install --save arrow-style

Usage

var arrowStyle = require('arrow-style')

var style = arrowStyle('up', {
    size: 8,
    color: 'red'
})

//style is now an object with the following properties
style = {
    borderLeft: '8px solid transparent',
    borderRight: '8px solid transparent',
    borderBottom: '8px solid red',
}
//styles generated to create a DOM arrow pointing up: