diff --git a/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts b/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts
index ff441a6..2af7e51 100644
--- a/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts
+++ b/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts
@@ -3,7 +3,7 @@ import { TypographyVariants } from '../../types/TypographyVariants';
import { NgTemplateOutlet } from '@angular/common';
@Component({
- selector: 'my-wallet-typography',
+ selector: 'mw-typography',
standalone: true,
imports: [NgTemplateOutlet],
templateUrl: './typography.component.html',
diff --git a/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html b/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html
index 2e9d141..2e3b30b 100644
--- a/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html
+++ b/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html
@@ -1,5 +1,5 @@
-{{amount()|currency:currencyCode():'symbol-narrow'}}
+>{{amount()|currency:currencyCode():'symbol-narrow'}}
diff --git a/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html b/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html
index de39bf1..0e5f700 100644
--- a/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html
+++ b/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html
@@ -1,10 +1,10 @@
- {{category()}}
+ >{{category()}}
\ No newline at end of file
diff --git a/projects/my-wallet-ds/src/stories/typography.stories.ts b/projects/my-wallet-ds/src/stories/typography.stories.ts
index 21cdf15..0a1b158 100644
--- a/projects/my-wallet-ds/src/stories/typography.stories.ts
+++ b/projects/my-wallet-ds/src/stories/typography.stories.ts
@@ -75,7 +75,7 @@ export default {
const Template = (args: {variant: TypographyVariants, ellipsis: boolean, letterSpacing: string, lineHeight: null|string, size: string, color: string, maxWidth: null|string}) => ({
props: args,
template: `
- Texto`,
+ >Texto`,
});
export const Paragraph = Template.bind({});