UNPKG

react-landing-page

Version:

[![Demo](https://user-images.githubusercontent.com/2906365/43375514-94cfb9ae-9383-11e8-9489-cffe5212fd2e.png)](https://hermanya.github.io/react-landing-page/)

41 lines (35 loc) 1.17 kB
# PricingTier ```.jsx <Heading textAlign="center">Pricing</Heading> <Flex justifyContent="space-around"> <PricingTier bg="silver" tierName="Basic" price="Free" billingType="forever" sellingPoints={[ '🔥 Full feature set', '📑 Comprehensive docs' ]}> <CallToAction bg="black" width={1} mt="auto">Download</CallToAction> </PricingTier> <PricingTier bg="gold" tierName="Premium" price="$99" billingType="Yearly" sellingPoints={[ '🔥 Full feature set', '📑 Comprehensive docs', '😌 Future updates', '👩‍⚖️ Commercial license' ]}> <CallToAction bg="black" width={1}>Buy now</CallToAction> </PricingTier> </Flex> ``` Extends: [Flex](https://jxnblk.com/rebass/components/Flex) | prop | default | type | | ------------- | --------- | --------------- | | tierName | 'Premium' | string | | price | '$99' | string | | billingType | 'Yearly' | string | | sellingPoints | [] | array of string |