File size: 423 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 | import React from 'react';
export const PromptIcon = () => {
return (
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.90703 6.14166L12.3657 12.1461L6.90703 18.1506L5.79712 17.1416L10.3385 12.1461L5.79712 7.15067L6.90703 6.14166Z" />
<path d="M18.838 18.1231L12.2439 18.1231V16.6231L18.838 16.6231V18.1231Z" />
</svg>
);
};
export default PromptIcon;
|