Skip to content

Commit

Permalink
feat(component): Add Ticket Icon Related Blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-nfc committed Oct 8, 2024
1 parent bea97d5 commit 4bf75f9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/icons/ticket/RelatedTicketBlocks.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const RelatedTicketBlocks = ({
width = '20px',
height = '20px',
fill = '#FFF'
}) => {

return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" width={ width } height={ height } fill={ fill }>
<path d="M360-320h80v-320h-80v320Zm160 0h80v-320h-80v320ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/>
</svg>
);
}

export default RelatedTicketBlocks;

0 comments on commit 4bf75f9

Please sign in to comment.