UNPKG

972 BTypeScriptView Raw
1import { type HTMLChakraProps, type SystemStyleObject } from "../../styled-system";
2export interface BleedProps extends HTMLChakraProps<"div"> {
3 /**
4 * The negative margin on the x-axis
5 */
6 inline?: SystemStyleObject["marginInline"];
7 /**
8 * The negative margin on the y-axis
9 */
10 block?: SystemStyleObject["marginBlock"];
11 /**
12 * The negative margin on the inline-start axis
13 */
14 inlineStart?: SystemStyleObject["marginInlineStart"];
15 /**
16 * The negative margin on the inline-end axis
17 */
18 inlineEnd?: SystemStyleObject["marginInlineEnd"];
19 /**
20 * The negative margin on the block-start axis
21 */
22 blockStart?: SystemStyleObject["marginBlockStart"];
23 /**
24 * The negative margin on the block-end axis
25 */
26 blockEnd?: SystemStyleObject["marginBlockEnd"];
27}
28export declare const Bleed: import("react").ForwardRefExoticComponent<BleedProps & import("react").RefAttributes<HTMLDivElement>>;