import React from 'react';

export default function %%COMPONENT_NAME%%({ size = 24, color = 'currentColor', ...restProps }) {
  return (
    <svg
     xmlns='http://www.w3.org/2000/svg'
     className='icon icon-tabler icon-tabler-%%ORIGINAL_NAME%%'
     width={size}
     height={size}
     viewBox='0 0 24 24'
     stroke={color}
     strokeWidth='2'
     fill='none'
     strokeLinecap='round'
     strokeLinejoin='round'
     {...restProps}
    >
      %%SVG_CONTENT%%
    </svg>
  );
}