@payfit/unity-components
Version:
36 lines (35 loc) • 1.13 kB
TypeScript
import { VariantProps } from '@payfit/unity-themes';
import { PropsWithChildren } from 'react';
declare const alertActions: import('tailwind-variants').TVReturnType<{
direction: {
row: string;
column: string;
};
}, undefined, "uy:flex uy:gap-100", {
direction: {
row: string;
column: string;
};
}, undefined, import('tailwind-variants').TVReturnType<{
direction: {
row: string;
column: string;
};
}, undefined, "uy:flex uy:gap-100", unknown, unknown, undefined>>;
export type AlertActionsProps = PropsWithChildren<{
/**
* The direction in which to lay out the child actions.
* @default 'column'
*/
direction?: VariantProps<typeof alertActions>['direction'];
}>;
declare const AlertActions: import('react').ForwardRefExoticComponent<{
/**
* The direction in which to lay out the child actions.
* @default 'column'
*/
direction?: VariantProps<typeof alertActions>["direction"];
} & {
children?: import('react').ReactNode | undefined;
} & import('react').RefAttributes<HTMLDivElement>>;
export { AlertActions };