diff options
Diffstat (limited to 'src/components/CollapsibleSectionHeader.js')
| -rw-r--r-- | src/components/CollapsibleSectionHeader.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/CollapsibleSectionHeader.js b/src/components/CollapsibleSectionHeader.js index 3cd0a96..9c25d74 100644 --- a/src/components/CollapsibleSectionHeader.js +++ b/src/components/CollapsibleSectionHeader.js @@ -1,6 +1,6 @@ import React from 'react'; import { ChevronDown } from 'react-feather'; -import cx from 'classnames'; +import cx from 'clsx'; import { SectionNameType } from './shared/Basic'; import Button from './Button'; @@ -12,7 +12,7 @@ type Props = { type: string, qty?: number, toggle?: () => void, - isOpen?: boolean + isOpen?: boolean, }; export default function Header({ name, type, toggle, isOpen, qty }: Props) { |
