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 bf25c43
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion src/internal/text/TextCaption.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { ReactNode } from 'react';
import { ReactNode } from "react";

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
3 changes: 2 additions & 1 deletion src/internal/text/TextLabel1.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { ReactNode } from 'react';
import { ReactNode } from "react";

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
3 changes: 2 additions & 1 deletion src/internal/text/TextLabel2.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { ReactNode } from 'react';
import { ReactNode } from "react";

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
3 changes: 2 additions & 1 deletion src/internal/text/TextLegal.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { ReactNode } from 'react';
import { ReactNode } from "react";

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 bf25c43

Please sign in to comment.