11 lines
1.2 KiB
TypeScript
11 lines
1.2 KiB
TypeScript
import type { IconProps } from "./type.ts";
|
|
|
|
export function IconPageCross({ size = 24, className }: IconProps) {
|
|
return (
|
|
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
|
<path fillRule="evenodd" clipRule="evenodd" d="M8 4C6.89543 4 6 4.89543 6 6V18C6 19.1046 6.89542 20 8 20H13C13.5523 20 14 20.4477 14 21C14 21.5523 13.5523 22 13 22H8C5.79088 22 4 20.2092 4 18V6C4 3.79087 5.79087 2 8 2H16C18.2092 2 20 3.79088 20 6V13C20 13.5523 19.5523 14 19 14C18.4477 14 18 13.5523 18 13V6C18 4.89542 17.1046 4 16 4H8Z" fill="currentColor" />
|
|
<path fillRule="evenodd" clipRule="evenodd" d="M16.1716 16.1718C16.5621 15.7813 17.1953 15.7813 17.5858 16.1718L19 17.586L20.4142 16.1718C20.8047 15.7813 21.4379 15.7813 21.8284 16.1718C22.2189 16.5623 22.2189 17.1955 21.8284 17.586L20.4142 19.0002L21.8284 20.4145C22.2189 20.805 22.2189 21.4382 21.8284 21.8287C21.4379 22.2192 20.8047 22.2192 20.4142 21.8287L19 20.4144L17.5858 21.8287C17.1953 22.2192 16.5621 22.2192 16.1716 21.8287C15.7811 21.4382 15.7811 20.805 16.1716 20.4145L17.5858 19.0002L16.1716 17.586C15.7811 17.1955 15.7811 16.5623 16.1716 16.1718Z" fill="currentColor" />
|
|
</svg>
|
|
);
|
|
}
|