Changes
2 changed files (+15/-4)
-
-
@@ -0,0 +1,9 @@/* * SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com> * SPDX-License-Identifier: AGPL-3.0-only */ :where(.logo) { height: 1em; width: auto; }
-
-
-
@@ -3,26 +3,28 @@ // SPDX-License-Identifier: AGPL-3.0-onlyimport { type CSSProperties, type FC } from "react"; import css from "./Logo.module.css"; export interface LogoProps { className?: string; style?: CSSProperties; } export const Logo: FC<LogoProps> = (props) => { export const Logo: FC<LogoProps> = ({ className = "", ...rest }) => { return ( <svg {...props} {...rest} className={`${css.logo} ${className}`} xmlns="http://www.w3.org/2000/svg" fill="none" role="img" aria-label="Yamori" width="auto" height="1em" viewBox="0 0 232 71" > <path fill="currentColor" fill-opacity=".8" fillOpacity=".8" d="M231.073 19.281V70h-7.078V19.281h7.078ZM223.432 5.36c0-1.28.344-2.359 1.032-3.234.718-.875 1.765-1.313 3.14-1.313 1.375 0 2.422.438 3.141 1.313.719.875 1.078 1.953 1.078 3.234 0 1.25-.359 2.313-1.078 3.188-.719.844-1.766 1.265-3.141 1.265s-2.422-.421-3.14-1.265c-.688-.875-1.032-1.938-1.032-3.188ZM205.148 27.39V70h-7.079V19.281h6.844l.235 8.11Zm13.453-8.437v6.938a12.697 12.697 0 0 0-1.735-.235 15.824 15.824 0 0 0-1.828-.093c-1.719 0-3.234.359-4.547 1.078-1.281.718-2.375 1.734-3.281 3.047-.906 1.312-1.625 2.843-2.156 4.593-.5 1.75-.828 3.657-.985 5.719l-2.015 1.172c0-3.156.25-6.11.75-8.86.531-2.75 1.328-5.171 2.39-7.265 1.094-2.094 2.485-3.735 4.172-4.922 1.688-1.188 3.703-1.781 6.047-1.781.5 0 1.094.062 1.781.187.688.125 1.157.266 1.407.422ZM153.229 47.172v-5.016c0-3.906.484-7.343 1.453-10.312.969-2.969 2.312-5.453 4.031-7.453 1.719-2 3.734-3.5 6.047-4.5 2.344-1.032 4.875-1.547 7.594-1.547 2.812 0 5.375.515 7.687 1.547 2.344 1 4.375 2.5 6.094 4.5 1.75 2 3.094 4.484 4.031 7.453.969 2.968 1.453 6.406 1.453 10.312v5.016c0 3.906-.484 7.344-1.453 10.312-.937 2.938-2.281 5.422-4.031 7.453-1.719 2-3.75 3.5-6.094 4.5-2.312 1-4.844 1.5-7.594 1.5s-5.296-.5-7.64-1.5c-2.313-1-4.344-2.5-6.094-4.5-1.719-2.03-3.062-4.515-4.031-7.453-.969-2.968-1.453-6.406-1.453-10.312Zm7.078-5.016v5.016c0 2.812.281 5.312.844 7.5.593 2.187 1.421 4.031 2.484 5.531 1.094 1.5 2.375 2.64 3.844 3.422 1.5.75 3.156 1.125 4.968 1.125 2.032 0 3.797-.375 5.297-1.125 1.532-.781 2.797-1.922 3.797-3.422 1.031-1.5 1.797-3.344 2.297-5.531.5-2.188.75-4.688.75-7.5v-5.016c0-2.812-.297-5.297-.891-7.453-.562-2.187-1.39-4.031-2.484-5.531s-2.391-2.64-3.891-3.422c-1.468-.781-3.125-1.172-4.968-1.172-1.782 0-3.422.39-4.922 1.172-1.469.781-2.735 1.922-3.797 3.422-1.063 1.5-1.891 3.344-2.484 5.531-.563 2.156-.844 4.64-.844 7.453ZM95.145 29.5V70h-7.031V19.281h6.656l.375 10.219Zm-1.406 12.75-3.282-.656c.032-3.282.422-6.328 1.172-9.14.75-2.813 1.844-5.282 3.282-7.407 1.437-2.125 3.234-3.766 5.39-4.922 2.156-1.188 4.641-1.781 7.453-1.781 1.969 0 3.782.343 5.438 1.031 1.687.656 3.14 1.703 4.359 3.14 1.25 1.438 2.219 3.282 2.906 5.532.688 2.25 1.032 4.969 1.032 8.156V70h-7.032V36.578c0-2.937-.39-5.266-1.171-6.984-.782-1.719-1.86-2.953-3.235-3.703-1.375-.782-3-1.172-4.875-1.172-2.156 0-3.969.5-5.437 1.5-1.469 1-2.64 2.36-3.516 4.078-.844 1.687-1.469 3.578-1.875 5.672a38.196 38.196 0 0 0-.61 6.281Zm27.656-4.64-4.688 1.124c.032-2.656.422-5.203 1.172-7.64.75-2.438 1.844-4.61 3.282-6.516a16.26 16.26 0 0 1 5.25-4.547c2.093-1.125 4.484-1.687 7.171-1.687 2.313 0 4.344.36 6.094 1.078a11.086 11.086 0 0 1 4.453 3.328c1.25 1.469 2.188 3.375 2.813 5.719.625 2.312.937 5.078.937 8.297V70h-7.078V36.672c0-3.125-.39-5.547-1.172-7.266-.75-1.718-1.812-2.922-3.187-3.61-1.375-.718-3-1.077-4.875-1.077-1.656 0-3.11.375-4.36 1.125-1.25.718-2.296 1.703-3.14 2.953-.844 1.219-1.5 2.594-1.969 4.125a18.307 18.307 0 0 0-.703 4.687Z" /> <path
-