Home > @uniformdev/design-system > RhythmProps

RhythmProps type

Signature:

type RhythmProps = React.HTMLAttributes<HTMLDivElement | HTMLFieldSetElement> & {
    tag?: HtmlTagProps | 'fieldset';
    gap?: SpacingProp;
    align?: CSSProperties['alignItems'];
    justify?: CSSProperties['justifyContent'];
    children: React.ReactNode;
    disabled?: boolean;
    ref?: Ref<HTMLDivElement>;
};