refactor: Use PascalCase naming

This commit is contained in:
Aman Harwara
2021-10-04 19:12:11 +05:30
parent fc226043fa
commit 170234ce84

View File

@@ -85,7 +85,7 @@ export const Dropdown: FunctionComponent<DropdownProps> = ({
children={({ value, label, isExpanded }) => {
const current = items.find((item) => item.value === value);
const icon = current ? current?.icon : null;
return customDropdownButton({
return CustomDropdownButton({
value,
label,
isExpanded,