import type { Sticky as StickyType } from '../types/types'; const COLOR_MAP: Record = { yellow: '#fdfd96', blue: '#a2d2ff', green: '#b5ead7', pink: '#ffb7ce', purple: '#cdb4db', orange: '#ffc09f', }; type StickyProps = { sticky: StickyType; }; const Sticky = ({ sticky }: StickyProps) => { const backgroundColor = COLOR_MAP[sticky.color] || '#fdfd96'; return (
{sticky.text}
); }; export default Sticky;