@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
10 lines (7 loc) • 402 B
TypeScript
/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { CqProperties } from '../patterns/cq';
import type { HTMLStyledProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface CqProps extends CqProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof CqProperties > {}
export declare const Cq: FunctionComponent<CqProps>