Skip to content

Commit a60abd9

Browse files
committed
♻️ Bytter ut deprekert komponent
Ingress er deprekert, bytter til BodyLong
1 parent 2631a86 commit a60abd9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import styles from './ForsideIngress.module.css';
2-
import { Ingress } from '@navikt/ds-react';
2+
import { BodyLong } from '@navikt/ds-react';
33

44
export const ForsideIngress = ({ children }: { children: React.ReactNode }) => (
5-
<Ingress className={styles.ingress}>{children}</Ingress>
5+
<BodyLong size={'large'} className={styles.ingress}>
6+
{children}
7+
</BodyLong>
68
);

0 commit comments

Comments
 (0)