| 123456789101112131415161718 |
- import * as React from 'react'
- export function IsFilledIcon(): JSX.Element {
- return (
- <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
- <rect
- x="4"
- y="4"
- width="16"
- height="16"
- rx="2"
- strokeWidth="2"
- fill="currentColor"
- opacity=".9"
- />
- </svg>
- )
- }
|