const S = { fill: 'none', stroke: 'currentColor', strokeWidth: '1.6', strokeLinecap: 'round', strokeLinejoin: 'round', }; const svg = (children) => ( {children} ); export const IconHome = () => svg( <> ); export const IconBlog = () => svg( <> ); export const IconLotto = () => svg( <> ); export const IconStock = () => svg( <> ); export const IconTravel = () => svg(); export const IconLab = () => svg( <> ); export const IconTodo = () => svg( <> ); export const IconSubscription = () => svg( <> ); export const IconBuilding = () => svg( <> );