Mislav Lukach 764077ef3d
Feat/create UI dir (#9462)
Co-authored-by: amanape <83104063+amanape@users.noreply.github.com>
2025-07-03 13:26:19 +00:00

17 lines
327 B
TypeScript

export type BaseProps = {
className?: string;
style?: React.CSSProperties;
};
export type HTMLProps<T extends React.ElementType> = Omit<
React.ComponentPropsWithoutRef<T>,
"children"
>;
export type ComponentVariant = "primary" | "secondary" | "tertiary";
export interface IOption<T> {
label: string;
value: T;
}