Skip to content

Commit

Permalink
Forward props to IconPatrimoine component
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrucs committed Nov 21, 2023
1 parent 2b0976d commit f0cab31
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
const SvgComponent: React.FC = () => (
<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
const SvgComponent: React.FC = props => (
<svg
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
fillRule="evenodd"
clipRule="evenodd"
Expand Down

0 comments on commit f0cab31

Please sign in to comment.