Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ukorvl committed Aug 28, 2024
1 parent d196c79 commit e37826a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion site/src/components/common/Icon/icons/Twitter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const Twitter: SvgIconComponent = ({ className }) => (
<svg className={className} xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 462.799"><path fill-rule="nonzero" d="M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z"/></svg>
<svg
className={className}
xmlns="http://www.w3.org/2000/svg"
shape-rendering="geometricPrecision"
text-rendering="geometricPrecision"
image-rendering="optimizeQuality"
fill-rule="evenodd"
clip-rule="evenodd"
viewBox="0 0 512 462.799"
>
<path
fill-rule="nonzero"
d="M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z"
/>
</svg>
)

export default memo(Twitter)

0 comments on commit e37826a

Please sign in to comment.