Skip to content

Instantly share code, notes, and snippets.

@chichilatte
Last active May 16, 2024 12:17
Show Gist options
  • Save chichilatte/d1a796db707dff1dac77b81815c47ef4 to your computer and use it in GitHub Desktop.
Save chichilatte/d1a796db707dff1dac77b81815c47ef4 to your computer and use it in GitHub Desktop.
Importing an SVG as a React component (mid 2024)
declare module "*.svg" {
const ReactComponent: React.FunctionComponent<React.SVGAttributes<SVGElement>>;
export {ReactComponent};
}
import {ReactComponent as PencilIcon} from '../assets/icons/pencil.svg'
export default function EditButton(onClick:() => void) {
return <button onClick={onClick}>
<PencilIcon width="12" />
</button>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment