UNPKG

@patreon/studio

Version:

Patreon Studio Design System

14 lines (13 loc) 451 B
import type { BaseProps, ChildrenProps, StylableProps } from '../../types/component'; export interface CardLayoutProps extends BaseProps, ChildrenProps, StylableProps { /** * Controls how the layout manages the borders of Cards * @default managed */ borders?: 'managed' | 'none'; /** * Controls the spacing on cards in the layout * @default edgeless-mobile */ spacing?: 'edgeless-mobile' | 'separated'; }