Skip to content

Commit

Permalink
ran prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulharpal1603 committed Jul 24, 2024
1 parent 8e9115c commit 8053b9e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/src/components/AdsContainer/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
width: 100%;
max-width: 341px;
}
}
}
2 changes: 1 addition & 1 deletion docs/src/components/BannerSponsor/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@

.sponsor-banner-silver {
max-width: 163px;
}
}
8 changes: 4 additions & 4 deletions docs/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ const FeatureList: FeatureItem[] = [
},
]

function Feature({ title, Svg, description,allowsDarkMode }: FeatureItem) {
function Feature({ title, Svg, description, allowsDarkMode }: FeatureItem) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<Svg
className={clsx(styles.featureSvg, {
[styles.svgDarkMode]: allowsDarkMode,
})}
role="img"
/>
})}
role="img"
/>
</div>
<div className="text--center padding-horiz--md">
<h3>{title}</h3>
Expand Down
12 changes: 6 additions & 6 deletions docs/src/components/HomepageSponsored/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ const SponsorList: SponsorItem[] = [
// },
]

function Feature({ title, Svg, link,allowsDarkMode}: FeatureItem) {
function Feature({ title, Svg, link, allowsDarkMode }: FeatureItem) {
return (
<div className={clsx('col col--6')}>
<div className="text--center">
<a href={link} title={title} target="_blank" rel="noreferrer" aria-label={title}>
<Svg
className={clsx(styles.featureSvg, {
[styles.svgDarkMode]: allowsDarkMode,
})}
role="img"
<Svg
className={clsx(styles.featureSvg, {
[styles.svgDarkMode]: allowsDarkMode,
})}
role="img"
/>
</a>
</div>
Expand Down

0 comments on commit 8053b9e

Please sign in to comment.