Files
actual/packages/component-library/src/icons/v1/AlignRight.tsx
2025-03-06 18:16:59 +00:00

19 lines
431 B
TypeScript

import * as React from 'react';
import type { SVGProps } from 'react';
export const SvgAlignRight = (props: SVGProps<SVGSVGElement>) => (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
style={{
color: 'inherit',
...props.style,
}}
>
<path
d="M1 1h18v2H1V1zm0 8h18v2H1V9zm0 8h18v2H1v-2zM7 5h12v2H7V5zm0 8h12v2H7v-2z"
fill="currentColor"
/>
</svg>
);