Use prettier to order tailwind classes

This commit is contained in:
Luke Vella 2022-04-16 10:25:29 +01:00
parent c5c2816c3d
commit eee23c1bb5
52 changed files with 268 additions and 262 deletions

View file

@ -8,7 +8,7 @@ const VoteIcon: React.VoidFunctionComponent<{
if (type === "yes") {
return <CheckCircle className="h-5 w-5 text-green-400" />;
}
return <span className="inline-block bg-slate-300 w-2 h-2 rounded-full" />;
return <span className="inline-block h-2 w-2 rounded-full bg-slate-300" />;
};
export default VoteIcon;