@fidely-ui/react
Version:
Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps
11 lines (10 loc) • 483 B
TypeScript
import { HTMLStyledProps } from '@fidely-ui/styled-system/jsx';
import { type FlexProperties } from '@fidely-ui/styled-system/patterns';
export interface FlexProps extends Omit<HTMLStyledProps<'div'>, keyof FlexProperties>, FlexProperties {
}
/**
* Flex component
*
* Provides a flexible box layout system using Panda's flex pattern.
*/
export declare const Flex: import("react").ForwardRefExoticComponent<Omit<FlexProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;