@team_yumi/ramen 0.4.0-next.20240131-2272142-f71c879315d91f54d45663e680695422 → 0.4.0-next.20240209-27a709f-3838031b2dc4946e05d5f73df0fb8709

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.
@@ -1,4 +1,5 @@
1
1
  import * as Mdh from './mdh';
2
2
  import * as Neutral from './neutral';
3
3
  import * as Sm from './sm';
4
- export { Mdh, Neutral, Sm };
4
+ import * as TxD from './txd';
5
+ export { Mdh, Neutral, Sm, TxD };
@@ -0,0 +1,7 @@
1
+ import { ReactComponent as Accesories } from './accesorios.svg';
2
+ import { ReactComponent as Shoes } from './calzado.svg';
3
+ import { ReactComponent as Sports } from './deportes.svg';
4
+ import { ReactComponent as Man } from './hombre.svg';
5
+ import { ReactComponent as Woman } from './mujer.svg';
6
+ import { ReactComponent as Childish } from './infantil.svg';
7
+ export { Accesories, Shoes, Sports, Man, Woman, Childish };
@@ -25,6 +25,7 @@ export interface IProps {
25
25
  * The default selected option
26
26
  */
27
27
  defaultOptionSelected?: string;
28
+ withBorder: boolean;
28
29
  }
29
30
  declare const XGroupRadioButton: React.FC<IProps>;
30
31
  export default XGroupRadioButton;