IsFilledIcon.tsx 370 B

123456789101112131415161718
  1. import * as React from 'react'
  2. export function IsFilledIcon(): JSX.Element {
  3. return (
  4. <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
  5. <rect
  6. x="4"
  7. y="4"
  8. width="16"
  9. height="16"
  10. rx="2"
  11. strokeWidth="2"
  12. fill="currentColor"
  13. opacity=".9"
  14. />
  15. </svg>
  16. )
  17. }