import clsx from 'clsx'; import React from 'react'; import DropdownDrag from '~icons/material-symbols/drag-indicator'; import Text from '../Text/Text'; export type Props = { style?: React.CSSProperties; active?: boolean; name: string; }; /** * This is a reusable dropdown component that can be used to toggle the visiblity of information */ export default function ScheduleListItem(props: Props) { return (