interface DropShadowProps { id?: string; x?: string; y?: string; width?: string; height?: string; color?: string; opacity?: number; } export const DropShadow = (props: DropShadowProps) => { const { color = 'black', opacity = 0.8, ...restProps } = props; return ( ); };