@patreon/studio
Version:
Patreon Studio Design System
8 lines (7 loc) • 383 B
TypeScript
import React from 'react';
import type { BaseProps, ChildrenProps } from '~/types/component';
export interface InlineSuccessProps extends BaseProps, Required<ChildrenProps> {
/** The size of the text and icon, defaults to 'sm' */
size?: 'sm' | 'xs';
}
export declare function InlineSuccess({ children, 'data-tag': dataTag, id, size }: InlineSuccessProps): React.JSX.Element;