UNPKG

tailwind-compositor

Version:

Compositor is a system of constraints designed to produce aesthetically pleasing, typographic compositions, based on objective, constant dimensions of space.

29 lines (28 loc) 802 B
import { Style } from '../types'; export declare const matrixColumns: ({ columns }: { columns: number; }) => Style; export declare const matrixRows: ({ size }: { size?: string; }) => Style; export declare const matrixCellStartX: ({ start }: { start: number; }) => Style; export declare const matrixCellSpanX: ({ span }: { span: number; }) => Style; export declare const matrixCellStartY: ({ start }: { start: number; }) => Style; export declare const matrixCellSpanY: ({ span }: { span: number; }) => Style; export declare const matrixGap: ({ rhythm }: { rhythm: string; }) => Style; export declare const matrixGapX: ({ rhythm }: { rhythm: string; }) => Style; export declare const matrixGapY: ({ rhythm }: { rhythm: string; }) => Style;