2.1.1 • Published 10 months ago

react-checkmark v2.1.1

Weekly downloads
449
License
Apache-2.0
Repository
-
Last release
10 months ago

See Live Demo

Getting Started

Install the component

npm i react-checkmark

Use the component

import { Checkmark } from 'react-checkmark'

Default usage

render() {
  return ( <Checkmark /> )
}

Usage with size specified:

  • 'small' for 16px
  • 'medium' for 24px
  • 'large' for 52px
  • 'xLarge' for 72px
  • 'xxLarge' for 96px
  • or specify a valid number for pixel
render() {
  return (
    <>
      <Checkmark size='xxLarge' />
      <Checkmark size='96px' />
    </>
  )
}

Usage with color (name or hex value) specified:

render() {
  return (
    <>
      <Checkmark size='128px' color='blue' />
      <Checkmark size='256px' color='#223344'/>
    </>
  )
}

LICENCE Apache 2.0 - Created by Stanley Xu

2.1.1

10 months ago

2.1.0

10 months ago

2.0.0

2 years ago

1.4.0

4 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago