Skip to content

Commit

Permalink
handle tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kyhyco committed Jun 13, 2024
1 parent 03086d7 commit 1ba906f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/internal/text/TextCaption.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ type TextCaptionReact = {
children: ReactNode;
};

/* istanbul ignore next */
export function TextCaption({ children }: TextCaptionReact) {
return (
<span className="text-sans text-bold text-xs leading-4">{children}</span>
Expand Down
1 change: 1 addition & 0 deletions src/internal/text/TextLabel1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ type TextLabel1React = {
children: ReactNode;
};

/* istanbul ignore next */
export function TextLabel1({ children }: TextLabel1React) {
return (
<span className="text-sans text-bold text-sm leading-5 text-[#0A0B0D]">
Expand Down
1 change: 1 addition & 0 deletions src/internal/text/TextLabel2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ type TextLabel2React = {
children: ReactNode;
};

/* istanbul ignore next */
export function TextLabel2({ children }: TextLabel2React) {
return (
<span className="text-sans text-sm leading-5 text-[#0A0B0D]">
Expand Down
1 change: 1 addition & 0 deletions src/internal/text/TextLegal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ type TextLegalReact = {
children: ReactNode;
};

/* istanbul ignore next */
export function TextLegal({ children }: TextLegalReact) {
return <span className="text-sans text-xs leading-4">{children}</span>;
}
4 changes: 0 additions & 4 deletions src/internal/text/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
export { TextBody } from './TextBody';
export { TextCaption } from './TextCaption';
export { TextHeadline } from './TextHeadline';
export { TextLabel1 } from './TextLabel1';
export { TextLabel2 } from './TextLabel2';
export { TextLegal } from './TextLegal';

0 comments on commit 1ba906f

Please sign in to comment.