File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @brisanet/ion-react" ,
3- "version" : " 0.0.9 " ,
3+ "version" : " 0.0.10 " ,
44 "description" : " Ion Design System in React" ,
55 "engines" : {
66 "node" : " 16.19.x"
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ export { default as Icon } from './icons';
33export { default as IonChip } from './chip' ;
44export { default as IonTag } from './tag' ;
55export { default as IonSteps } from './steps' ;
6+ export * from './typhography' ;
67export * from './alert' ;
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { render , screen } from '@testing-library/react' ;
3- import { IonHeading } from './heading' ;
43import { IonHeadingInterface } from '../typhography.types' ;
4+ import IonHeading from './heading' ;
55
66const defaultProps : IonHeadingInterface = { label : 'Ion React' , type : 'h1' } ;
77
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
22import { IonHeadingInterface } from '../typhography.types' ;
33import * as S from './styles' ;
44
5- export const IonHeading : React . FC < IonHeadingInterface > = ( {
5+ const IonHeading : React . FC < IonHeadingInterface > = ( {
66 label,
77 type,
88 size = 'normal' ,
@@ -24,3 +24,5 @@ export const IonHeading: React.FC<IonHeadingInterface> = ({
2424 } ;
2525 return headings [ type ] ;
2626} ;
27+
28+ export default IonHeading ;
You can’t perform that action at this time.
0 commit comments