@agility/plenum-ui 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,11 +2,11 @@ import React from "react"
2
2
  import "../lib/tailwind.css"
3
3
 
4
4
  const Layout = ({ children }) => {
5
- return (
5
+ return (
6
6
  <div className="p5 min-w-[320px] font-mulish">
7
- <div className="flex items-center justify-center">{children}</div>
7
+ <div className="flex items-center w-full justify-center">{children}</div>
8
8
  </div>
9
- )
9
+ )
10
10
  }
11
11
 
12
12
  export default Layout
package/dist/index.d.ts CHANGED
@@ -861,6 +861,7 @@ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/Animated
861
861
  maxLength?: number;
862
862
  label: ILabelProps;
863
863
  handleChange: (value: string) => void;
864
+ labelClassName?: string;
864
865
  }
865
866
  const AnimatedLabelInput: React.FC<IAnimatedLabelInputProps>;
866
867
  export default AnimatedLabelInput;