diff --git a/web/src/components/Subscription/FeatureList.module.scss b/web/src/components/Subscription/FeatureList.scss similarity index 97% rename from web/src/components/Subscription/FeatureList.module.scss rename to web/src/components/Subscription/FeatureList.scss index bbe964b9..b0528200 100644 --- a/web/src/components/Subscription/FeatureList.module.scss +++ b/web/src/components/Subscription/FeatureList.scss @@ -25,5 +25,4 @@ list-style: none; margin-bottom: 0; padding-left: 0; - padding-top: rem(12px); } diff --git a/web/src/components/Subscription/FeatureList.js b/web/src/components/Subscription/FeatureList.tsx similarity index 75% rename from web/src/components/Subscription/FeatureList.js rename to web/src/components/Subscription/FeatureList.tsx index 8380f1ca..78ae19da 100644 --- a/web/src/components/Subscription/FeatureList.js +++ b/web/src/components/Subscription/FeatureList.tsx @@ -17,19 +17,28 @@ */ import React from 'react'; +import classnames from 'classnames'; import FeatureItem from './FeatureItem'; -import styles from './FeatureList.module.scss'; +import styles from './FeatureList.scss'; -function FeatureList({ features }) { +interface Props { + features: any; + wrapperClassName?: string; +} + +const FeatureList: React.FunctionComponent = ({ + features, + wrapperClassName +}) => { return ( -