import React from 'react'; type SaveBoardIconProps = { width?: number; height?: number; color?: string; isSaved?: boolean; }; export const SaveBoardIcon = ({ width = 14, height = 14, color = 'currentColor', isSaved = false, }: SaveBoardIconProps) => ( );