ChunDe's picture
feat: Fix canvas size icons and improve layer ordering with keyboard shortcuts
b9c2e4b
raw
history blame
505 Bytes
interface IconLinkedInSizeProps {
selected?: boolean;
}
export default function IconLinkedInSize({ selected = false }: IconLinkedInSizeProps) {
const imgSrc = selected
? "/assets/sizes/Property 1=selected-1.svg"
: "/assets/sizes/Property 1=Default-1.svg";
return (
<div style={{ position: 'relative', width: '16px', height: '16px' }}>
<img
alt="LinkedIn"
style={{ display: 'block', width: '100%', height: '100%' }}
src={imgSrc}
/>
</div>
);
}