@ansible/ansible-ui-framework 2.4.231 → 2.4.233

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ import { PFColor } from '../components/pfcolors';
3
3
  export interface TextCellProps {
4
4
  icon?: ReactNode;
5
5
  iconSize?: 'sm' | 'md' | 'lg';
6
+ iconAlign?: 'left' | 'right';
6
7
  text?: string | null;
7
8
  to?: string;
8
9
  onClick?: () => void;
@@ -5,4 +5,5 @@ export declare function IconWrapper(props: {
5
5
  color?: PFColor;
6
6
  size?: 'sm' | 'md' | 'lg' | 'xl';
7
7
  padRight?: boolean;
8
+ padLeft?: boolean;
8
9
  }): import("react/jsx-runtime").JSX.Element;