@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
7 lines (6 loc) • 424 B
TypeScript
import { type Assign } from '@ark-ui/react';
import { type HTMLStyledProps } from '@fidely-ui/styled-system/types';
import { type TextVariantProps } from '@fidely-ui/styled-system/recipes';
export interface TextProps extends Assign<HTMLStyledProps<'p'>, TextVariantProps> {
}
export declare const Text: import("react").ForwardRefExoticComponent<Omit<TextProps, "ref"> & import("react").RefAttributes<HTMLParagraphElement>>;