UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

29 lines (28 loc) 1.04 kB
import { type HTMLChakraProps, type SystemStyleObject } from "../../styled-system"; export interface BleedProps extends HTMLChakraProps<"div"> { /** * The negative margin on the x-axis */ inline?: SystemStyleObject["marginInline"] | undefined; /** * The negative margin on the y-axis */ block?: SystemStyleObject["marginBlock"] | undefined; /** * The negative margin on the inline-start axis */ inlineStart?: SystemStyleObject["marginInlineStart"] | undefined; /** * The negative margin on the inline-end axis */ inlineEnd?: SystemStyleObject["marginInlineEnd"] | undefined; /** * The negative margin on the block-start axis */ blockStart?: SystemStyleObject["marginBlockStart"] | undefined; /** * The negative margin on the block-end axis */ blockEnd?: SystemStyleObject["marginBlockEnd"] | undefined; } export declare const Bleed: import("react").ForwardRefExoticComponent<BleedProps & import("react").RefAttributes<HTMLDivElement>>;