Format code

This commit is contained in:
Zoe Roux 2023-11-06 01:24:16 +01:00
parent b0927b8388
commit 6b4468bf7d
2 changed files with 2 additions and 2 deletions

View File

@ -29,6 +29,6 @@ export const focusReset: object =
Platform.OS === "web" Platform.OS === "web"
? { ? {
boxShadow: "unset", boxShadow: "unset",
outline: "none" outline: "none",
} }
: {}; : {};

View File

@ -23,7 +23,7 @@ import { View } from "react-native";
import Star from "@material-symbols/svg-400/rounded/star-fill.svg"; import Star from "@material-symbols/svg-400/rounded/star-fill.svg";
import { rem, useYoshiki } from "yoshiki/native"; import { rem, useYoshiki } from "yoshiki/native";
export const Rating = ({ rating, color }: { rating?: number, color: Breakpoint<string> }) => { export const Rating = ({ rating, color }: { rating?: number; color: Breakpoint<string> }) => {
const { css } = useYoshiki(); const { css } = useYoshiki();
return ( return (