export const BgIcon = () => (
	<svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} fill="none">
		<rect width={16} height={16} fill="#8C8F94" rx={2} />
	</svg>
);

export const GradientIcon = () => (
	<svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} fill="none">
		<g clipPath="" data-figma-skip-parse="true">
			<foreignObject width={2125} height={2125} x={-1062.5} y={-1062.5} transform="scale(.023) rotate(45)">
				<div
					xmlns="http://www.w3.org/1999/xhtml"
					style={{
						background: "conic-gradient(from 90deg,#757575 0deg,#afafaf 360deg)",
						height: "100%",
						width: "100%",
						opacity: 1,
					}}
				/>
			</foreignObject>
		</g>
		<rect
			width={16}
			height={16}
			data-figma-gradient-fill='{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.45882353186607361,"g":0.45882353186607361,"b":0.45882353186607361,"a":1.0},"position":0.0},{"color":{"r":0.68627452850341797,"g":0.68627452850341797,"b":0.68627452850341797,"a":1.0},"position":1.0}],"stopsVar":[],"transform":{"m00":32.000003814697266,"m01":-32.0,"m02":-9.5367443009308772e-07,"m10":32.0,"m11":32.000003814697266,"m12":-32.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}'
			rx={2}
		/>
		<defs>
			<clipPath id="a">
				<rect width={16} height={16} rx={2} />
			</clipPath>
		</defs>
	</svg>
);

export const Image = () => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		xmlSpace="preserve"
		id="Layer_1"
		x={0}
		y={0}
		width={16}
		height={16}
		style={{
			enableBackground: "new 0 0 16 16",
		}}
		viewBox="0 0 16 16"
	>
		<style>{".st0{fill:#8c8f94}"}</style>
		<path
			d="M14 0H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM2 1.3h12c.4 0 .7.3.7.7v11.4l-2.3-2.9c-.2-.3-.6-.3-.8 0l-.9 1.2-3.3-3.3c-.2-.2-.5-.2-.7 0l-5.3 5.3V2c-.1-.4.2-.7.6-.7z"
			className="st0"
		/>
		<circle cx={11} cy={5} r={2} className="st0" />
	</svg>
);

export const Video = () => (
	<svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} fill="none">
		<path
			fill="#8C8F94"
			d="M13.956 0H2.044A2.012 2.012 0 0 0 0 2.044v11.912C0 15.11.889 16 2.044 16h11.912A2.012 2.012 0 0 0 16 13.956V2.044A2.012 2.012 0 0 0 13.956 0Zm.71 13.956c0 .355-.355.71-.71.71H2.044c-.355 0-.71-.355-.71-.71V2.044c0-.355.355-.71.71-.71h11.912c.355 0 .71.355.71.71v11.912Zm-8.444-3.29L10.667 8 6.222 5.333v5.334Z"
		/>
	</svg>
);
