import clsx from 'clsx'; import { IconConceptBlock } from '@/components/icons'; import { globalIDs } from '@/utils/constants'; import { type IBlock } from '../models/oss'; import { SelectBlock } from './select-block'; interface SelectParentProps { id?: string; value: IBlock | null; onChange: (newValue: IBlock | null) => void; fullWidth?: boolean; items?: IBlock[]; placeholder?: string; noBorder?: boolean; popoverClassname?: string; } export function SelectParent({ fullWidth, ...restProps }: SelectParentProps) { return (
); }