diff --git a/dist/index.d.ts b/dist/index.d.ts index 935d80d..bde3940 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -2,4 +2,3 @@ export { default as Button } from './Button'; export { default as Card } from './Card'; export type { ButtonProps } from './Button'; export type { CardProps } from './Card'; -import './styles.css'; diff --git a/dist/index.js b/dist/index.js index af82232..ad47fb9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,5 +1,3 @@ // src/index.ts export { default as Button } from './Button'; export { default as Card } from './Card'; -// Importar los estilos -import './styles.css'; diff --git a/src/components/index.ts b/src/components/index.ts index 956b0eb..bf18e4a 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -2,7 +2,4 @@ export { default as Button } from './Button'; export { default as Card } from './Card'; export type { ButtonProps } from './Button'; -export type { CardProps } from './Card'; - -// Importar los estilos -import './styles.css'; \ No newline at end of file +export type { CardProps } from './Card'; \ No newline at end of file