UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

10 lines 625 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import clsx from 'clsx'; import styles from './styles.css.js'; export function ResizeIcon({ variant }) { return (React.createElement("svg", { focusable: "false", className: clsx(styles['resize-icon'], styles[`resize-icon-${variant}`]), xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 16 16", "aria-hidden": true }, React.createElement("path", { d: "M2 8H14", strokeWidth: "2", strokeLinecap: "round" }))); } //# sourceMappingURL=resize-icon.js.map