mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
export interface AlertProps {
|
|
header: string;
|
|
content: string;
|
|
centered?: boolean;
|
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
overflow?: boolean;
|
|
cancel?: boolean;
|
|
labels?: {
|
|
cancel?: string;
|
|
confirm?: string;
|
|
};
|
|
}
|