export type DebugProps = { 'data-debug-id': string } export function debugProps( id: string, _component?: string, _file?: string ): DebugProps | Record { if (process.env.NODE_ENV === 'production') return {} return { 'data-debug-id': id, } }