chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:33:39 +02:00
parent a8781724d4
commit 71ea41695f
209 changed files with 4093 additions and 4114 deletions

View File

@ -1,7 +1,7 @@
import classNames from 'clsx'
import classNames from "clsx"
export interface IconButtonProps
extends React.ComponentPropsWithoutRef<'button'> {}
extends React.ComponentPropsWithoutRef<"button"> {}
export const IconButton: React.FC<IconButtonProps> = (props) => {
const { children, className, ...rest } = props
@ -9,8 +9,8 @@ export const IconButton: React.FC<IconButtonProps> = (props) => {
return (
<button
className={classNames(
'flex items-center justify-center text-center text-green-800 hover:animate-pulse focus:animate-pulse focus:outline-none dark:text-green-400',
className
"flex items-center justify-center text-center text-green-800 hover:animate-pulse focus:animate-pulse focus:outline-none dark:text-green-400",
className,
)}
{...rest}
>

View File

@ -1 +1 @@
export * from './IconButton'
export * from "./IconButton"