UNPKG

@radix-ui/themes

Version:

[![Radix Themes Logo](https://radix-ui.com/social/themes.png)](https://radix-ui.com/themes)

7 lines (5 loc) 236 B
import type { MarginProps } from '../props/margin.props.js'; export function extractMarginProps<T extends MarginProps>(props: T) { const { m, mx, my, mt, mr, mb, ml, ...rest } = props; return { m, mx, my, mt, mr, mb, ml, rest }; }