tailwind-compositor
Version:
Compositor is a system of constraints designed to produce aesthetically pleasing, typographic compositions, based on objective, constant dimensions of space.
20 lines (19 loc) • 485 B
TypeScript
export declare const bgBaselineRel: ({ baseline, root, color, }: {
baseline: number;
root: number;
color?: string;
}) => {
position: string;
backgroundRepeat: string;
backgroundSize: string;
backgroundImage: string;
};
export declare const bgBaseline: ({ baseline, color, }: {
baseline: number;
color: string;
}) => {
position: string;
backgroundRepeat: string;
backgroundImage: string;
backgroundSize: string;
};