import type { CSSProperties } from "../CSSProperties"; export type PlaceSelfLonghands = Required< Pick >; export function placeSelf( align: NonNullable, justify: NonNullable = align, ): PlaceSelfLonghands { return { alignSelf: align, justifySelf: justify, }; }