import { Feature } from '@preply/ds-core-types'; import React, { FC } from 'react'; import { IconItem } from './IconItem'; import { Ul } from './IconList.styles'; interface Props { icons: Feature[]; onIconClick: (icon: Feature) => void; selectedIcon: Feature | null; } export const IconList: FC = ({ icons, onIconClick, selectedIcon }) => { return ( ); };