Run prettier

pull/47/head
J M Rossy 1 year ago
parent b19c1ff78e
commit 7f97f4c0aa
  1. 14
      src/components/icons/Discord.tsx
  2. 14
      src/components/icons/Github.tsx
  3. 14
      src/components/icons/LinkedIn.tsx
  4. 14
      src/components/icons/Twitter.tsx
  5. 14
      src/components/icons/Web.tsx
  6. 2
      src/components/input/Checkbox.module.css

@ -1,4 +1,4 @@
import { memo } from 'react'
import { memo } from 'react';
function _Discord({
width,
@ -6,10 +6,10 @@ function _Discord({
fill,
className = '',
}: {
width?: number | string
height?: number | string
fill?: string
className?: string
width?: number | string;
height?: number | string;
fill?: string;
className?: string;
}) {
return (
<svg
@ -32,7 +32,7 @@ function _Discord({
</clipPath>
</defs>
</svg>
)
);
}
export const Discord = memo(_Discord)
export const Discord = memo(_Discord);

@ -1,4 +1,4 @@
import { memo } from 'react'
import { memo } from 'react';
function _Github({
width,
@ -6,10 +6,10 @@ function _Github({
fill,
className = '',
}: {
width?: number | string
height?: number | string
fill?: string
className?: string
width?: number | string;
height?: number | string;
fill?: string;
className?: string;
}) {
return (
<svg
@ -24,7 +24,7 @@ function _Github({
fill={fill}
/>
</svg>
)
);
}
export const Github = memo(_Github)
export const Github = memo(_Github);

@ -1,4 +1,4 @@
import { memo } from 'react'
import { memo } from 'react';
function _Linkedin({
width,
@ -6,10 +6,10 @@ function _Linkedin({
fill,
className = '',
}: {
width?: number | string
height?: number | string
fill?: string
className?: string
width?: number | string;
height?: number | string;
fill?: string;
className?: string;
}) {
return (
<svg
@ -24,7 +24,7 @@ function _Linkedin({
fill={fill}
/>
</svg>
)
);
}
export const Linkedin = memo(_Linkedin)
export const Linkedin = memo(_Linkedin);

@ -1,4 +1,4 @@
import { memo } from 'react'
import { memo } from 'react';
function _Twitter({
width,
@ -6,10 +6,10 @@ function _Twitter({
fill,
className = '',
}: {
width?: number | string
height?: number | string
fill?: string
className?: string
width?: number | string;
height?: number | string;
fill?: string;
className?: string;
}) {
return (
<svg
@ -24,7 +24,7 @@ function _Twitter({
fill={fill}
/>
</svg>
)
);
}
export const Twitter = memo(_Twitter)
export const Twitter = memo(_Twitter);

@ -1,4 +1,4 @@
import { memo } from 'react'
import { memo } from 'react';
function _Web({
width,
@ -6,10 +6,10 @@ function _Web({
fill,
className = '',
}: {
width?: number | string
height?: number | string
fill?: string
className?: string
width?: number | string;
height?: number | string;
fill?: string;
className?: string;
}) {
return (
<svg
@ -74,7 +74,7 @@ function _Web({
clip-rule="evenodd"
/>
</svg>
)
);
}
export const Web = memo(_Web)
export const Web = memo(_Web);

@ -20,7 +20,7 @@
border-radius: 0.2rem;
transform: scale(0);
transition: 200ms all ease-in-out;
background-color: #2362C0;
background-color: #2362c0;
}
.checkbox:checked::before {

Loading…
Cancel
Save