initial public release.

This commit is contained in:
Xiaohan-Tian
2025-08-11 18:37:21 -07:00
commit de51967b49
186 changed files with 32322 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
import React from 'react';
type PianoIconProps = React.SVGProps<SVGSVGElement>;
/**
* PianoIcon keyboard-style icon in a Font Awesome-like solid style
* - Uses currentColor
* - Scales with font size (1em)
* - viewBox matches FA dimensions
*/
const PianoIcon: React.FC<PianoIconProps> = (props) => (
<svg
viewBox="0 0 576 512"
width="1em"
height="1em"
fill="currentColor"
aria-hidden="true"
focusable="false"
{...props}
>
{/*
Build a frame with even-odd fill, then add inner black keys as filled bars.
Outer frame: 48,64 → 528x320
Inner hole: 96,112 → 384x224
Top slot: 112,128 → 352x32
Black keys: four bars centered
*/}
<path
fillRule="evenodd"
clipRule="evenodd"
d="
M48 64h480v320H48V64z
M96 112h384v224H96V112z
M112 128h352v32H112v-32z
M176 160h24v136h-24V160z
M240 160h24v136h-24V160z
M304 160h24v136h-24V160z
M368 160h24v136h-24V160z
"
/>
</svg>
);
export default PianoIcon;