Skip to content

Commit 1ee8daa

Browse files
committed
fixup! feat(card): add new component
1 parent 8026b9b commit 1ee8daa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/card/examples/card-image.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Component, h } from '@stencil/core';
1010
*
1111
* :::note
1212
* - The height and aspect ratio of the image affects the layout of the card.
13-
* - Do not forget to proved a meaningful alt text, to improve accessibility
13+
* - Remember to provide a meaningful alt text, to improve accessibility
1414
* :::
1515
*/
1616
@Component({
@@ -22,7 +22,7 @@ export class CardImageExample {
2222
public render() {
2323
const image = {
2424
src: 'https://unsplash.it/800/800/?random',
25-
alt: 'Do not forget to proved a meaningful alt text, to improve accessibility',
25+
alt: 'Remember to provide a meaningful alt text, to improve accessibility',
2626
loading: 'lazy' as 'lazy',
2727
};
2828

0 commit comments

Comments
 (0)